-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
44 lines (44 loc) · 1.7 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
<!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>Contact Page</title>
<link rel="stylesheet" href="./blog.css">
<link rel="stylesheet" href="./blog.html">
<link rel="stylesheet" href="./contact.html">
<link rel="stylesheet" href="./registration.html">
<link rel="stylesheet" href="./login.html">
</head>
<body>
<header>
<div class="nav">
<nav>
<h2 class="logo">My <span>Blog</span></h2>
<ul>
<li> <a href="./blog.html">Home</a></li>
<li> <a href="./contact.html">Contact</a></li>
<li> <a href="./registration.html">Registration</a></li>
<li> <a href="./login.html">Login</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="contact">
<div class="">
<h3>Welcome</h3>
<h3>Create an Account</h3>
<form action="" class="textfield">
<input type="text" class="input-field" placeholder="First Name"> <br>
<input type="text" class="input-field" placeholder="Last Name"> <br>
<input type="text" class="input-field" placeholder="Email"> <br>
<textarea type="text" class="input-field" placeholder="Message"></textarea> <br>
<button class="button"> <a class="btn" href="#">Send</a> </button>
</form>
</div>
</section>
</main>
</body>
</html>