forked from CodeYourFuture/HTML-CSS-Coursework-Week4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
107 lines (107 loc) · 3.16 KB
/
contact.html
File metadata and controls
107 lines (107 loc) · 3.16 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./css/contact.css" />
</head>
<body>
<header>
<div class="header">
<div class="left">
<p id="box"></p>
<a href="./index.html">
<p style="font-size: 24px">
<b>Maya Nelson</b> / Project Manager
</p></a
>
</div>
<nav class="right">
<ul>
<li><a href="#" style="color: #0150fd">ABOUT ME</a></li>
<li><a href="./resume.html">RESUME</a></li>
<li><a href="./project.html">PROJECTS</a></li>
<li><a href="./contact.html">CONTACT</a></li>
</ul>
</nav>
</div>
</header>
<!-- MAIN -->
<main>
<div id="main-head">
<div id="box"></div>
<h1>Let's Talk</h1>
</div>
<form>
<div class="form-row">
<div class="form-group">
<label for="first-name">First Name<span>*</span></label>
<input type="text" id="first-name" name="first-name" required />
</div>
<div class="form-group">
<label for="surname">Surname<span>*</span></label>
<input type="text" id="surname" name="surname" required />
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="email">E-mail<span>*</span></label>
<input type="email" id="email" name="email" required />
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject" />
</div>
</div>
<div class="form-row">
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message"></textarea>
</div>
</div>
<div class="form-row">
<button type="submit" class="send-btn">SEND</button>
</div>
</form>
</main>
<!-- FOOTER -->
<footer>
<p>
© 2035 by Maya Nelson.<br />
Powered and secured by Wix
</p>
<div>
<div>
<p><b>Call</b></p>
<p>123-456-7890</p>
</div>
<div>
<p><b>Write</b></p>
<p><a href="">[email protected]</a></p>
</div>
<div>
<p><b>Follow</b></p>
<ul>
<li>
<a
href="./designs/face-black.png"
style="height: 5px; width: 10px; background-color: black"
></a>
</li>
<li>
<a href="./designs/twitter-black.png" style="height: 5px"></a>
</li>
<li><a href="./designs/in-black.png" style="height: 5px"></a></li>
<li>
<a href="./designs/insta-black.png" style="height: 5px"></a>
</li>
</ul>
</div>
</div>
</footer>
</body>
</html>