-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
77 lines (52 loc) · 2.03 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en-us" >
<head>
<meta charset="UTF-8">
<title>CSS Stylesheets Homework - Portfolie</title>
<link rel="stylesheet" type="text/css" href="../basic-portfolio/assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="../basic-portfolio/assets/css/style.css">
</head>
<body>
<header>
<!-- <section id="headerl"> -->
<h1 id="headerl">Tim Mcwilliams</h1>
<!-- </section> -->
<!-- <section id="headerr"> -->
<h4 id="headerr">
<a id="about" href="somewhere.com">About</a>
<a id="portfolio" href="somewhere.com">Portfolio</a>
<a id="contact" href="somewhere.com">Contact</a>
</h4>
<!-- </section> -->
</header>
<!-- <h2>About Me</h2> -->
<div class="container1">
<h3> Name</h3>
<input type="First and Last Name" placeholder="Huey Luis">
<h3> Email</h3>
<input type="email" placeholder="[email protected]">
<h3> Message</h3>
<div class="messageBox">
<label for="message">Message</label><br>
<textarea id="message" cols="80" rows="8" required
placeholder="My shoes are too tight, and I have forgotten how to dance."></textarea>
</div>
<input type="submit" value="Send Message">
</form>
</section>
</div>
<section id="contact-info">
<h4>Conect With Me</h4>
<ul>
<li><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></li>
<li><strong>Twitter:</strong> <img id="twitter" src="../basic-portfolio/assets/images/twitter-icon.png">Twitter Link</a></li>
<li><strong>Linkedin:</strong> <img id="linkedin" src="../basic-portfolio/assets/images/linkedin.png">Linkedin</a></li>
<li><strong>GitHub:</strong> <img id="github" src="../basic-portfolio/assets/images/download.png">Github</a></li>
<li><strong>Gmail:</strong> <img id="gmail" src="../basic-portfolio/assets/images/gmail.png">gmail</a></li>
</ul>
</section>
<section class="clear">
<footer><h4>This Page Was Written with many hours of Toil</h4></footer>
</section>
</body>
</html>