-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
97 lines (83 loc) · 3.08 KB
/
contact.html
File metadata and controls
97 lines (83 loc) · 3.08 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
<!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>
<nav class="contact-nav">
<img src="img/lambda-black.png" alt="lambda logo">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="">Products</a>
<a href="">Blog</a>
<a href="">Contact</a>
</nav>
<img class="above-header-image" src="/home/tom/Desktop/Lambda School/Sprint-Challenge--User-Interface/img/contact.jpg" alt="">
<header class="contact-header">
<section class="header-left-text">
<div class="words">
<h1>Contact</h1>
<p> Contact is defined as:
<br>
<br> 1. The state or condition of physical touching.
<br>
<br> 2. A meeting, communication, or relationship with someone.
<br>
<br> Depending on your state, local laws, and level of wealth we may be able to accomodate you with either
type of contact.</p>
</div>
<div>
<img src="img/about-meeting.png" alt="meeting">
</div>
</section>
<section class="contact-form">
<form action="">
First Name:
<br>
<input type="text">
<br>
<br> Last Name:
<br>
<input type="text">
<br>
<br> Preferred Contact:
<br>
<input type="checkbox" name="contact" id="">Phone
<input type="checkbox" name="contact" id="email">Email
<input type="checkbox" name="contact" id="">Text
<br>
<br> Phone
<br>
<input type="tel" name="" id="">
<br>
<br> Email
<br>
<input type="email" name="" id="">
<br>
<br> Are you at least 18 years of age?
<br>
<input type="radio" name="age" id="">I am under 18
<input type="radio" name="age" id="">I am over 18
<br>
<br> Please submit your query below:
<br>
<input type="text" class="query-input">
<br>
<BR>
<input type="submit" value="SUBMIT">
</form>
</section>
</header>
<footer>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</nav>
</footer>
</body>