-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
60 lines (47 loc) · 1.44 KB
/
contact.html
File metadata and controls
60 lines (47 loc) · 1.44 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SpaceWalkers</title>
<link href="https://fonts.googleapis.com/css?family=Russo+One|Ubuntu" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<!-- navigation code here -->
<nav>
<div class="nav">
<h1>Contact Us!</h1>
<div class="navigation">
<a href='index.html'>home</a>
<a href='#'>About Us</a>
<a href='#'>Blog</a>
<a href='#'>Contact</a>
<a href='#'>Sign In</a>
</div>
</div>
</nav>
<div class="container-contact">
<div class="contact-image">
<img src="img/galaxy.jpeg">
</div>
<form action="contact-form" method="post">
<div>
<label for="name">Name:</label>
<input type="text" id="name" name="user_name">
</div>
<div>
<label for="msg">Message:</label>
<textarea id="msg" name="user_message"></textarea>
</div>
</form>
</div>
<footer>
<p>Copyright SpaceWalkers 2018</p>
</footer>
</div>
</body>
</html>