-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
57 lines (56 loc) · 2.45 KB
/
Copy pathcontact.html
File metadata and controls
57 lines (56 loc) · 2.45 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sprint Challenge - About</title>
<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="container contact-page">
<section class="header">
<img class="lambda-logo" src="img/lambda-black.png" alt="Image of Lambda Logo">
<nav class="navigation">
<a href="#">Home</a>
<a href="about.html">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="contact.html">Contact</a>
</nav>
</section>
<section class="contact-top">
<img class="sheep" src="img/sheep1.jpg" alt="Image of sheep">
<h1>Contact Our Team</h1>
<p>We are always on call to communicate with our existing and prospective clients. Please feel free to use the form below to contact us for any reason at all. A member of our team will respond promptly.</p>
</section>
<section class="contact-form">
<div class="name">
<input type="text" placeholder="Full Name" style="width: 300px;">
</div>
<div class="email">
<input type="text" placeholder="Email Address" style="width: 300px;">
</div>
<div class="phone">
<input type="text" placeholder="Phone Number" style="width: 300px;">
</div>
<div class="social">
<input type="text" placeholder="Social Security Number" style="width: 300px;">
</div>
<div class="message">
<textarea type="text" placeholder="Message" style="width: 400px; height: 200px;"></textarea>
</div>
<div class="submit">Submit</div>
</section>
<img class="btm-sheep" src="img/sheep.jpg" alt="Image of sheep">
<footer>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</nav>
</footer>
</div>
</body>
</html>