-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
59 lines (42 loc) · 1.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sprint Challenge - Home</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">
<nav>
<img class="logo" src="./img/lambda-black.png">
<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 src="./img/jumbo.jpg">
<form>
First Name:
<input type="text" name="first name">    
Last Name:
<input type="text" name="last name">
<input type="submit" value="SUBMIT">
</form>
<br>
<form>
Email:
<input type="text" name="Email">
</form>
<br>
<br>
<p>What's your problem?</p>
<form>
<input type="radio" name="problems" value="html" checked> html<br>
<input type="radio" name="problems" value="css"> css<br>
<input type="radio" name="problems" value="other"> Other
</form>
</div><!-- container -->
</body>
</html>