-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
43 lines (38 loc) · 1.56 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
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Stick+No+Bills:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="contact2.css">
<title>Contact</title>
</head>
<body>
<header>
<h2>Unix</h2>
<ul>
<li><a href="./index.html">HOME</a></li>
<li><a href="./games.html">GAMES</a></li>
<li><a href="./signUp.html">SIGN UP</a></li>
<li><a href="./contact.html">CONTACT</a></li>
</ul>
</header>
<div class="container">
<div class="form">
<form>
<h1>Contact Us</h1>
<input type="text" name="" placeholder="First Name">
<input type="text" name="" list="Annette" placeholder="Last Name">
<input type="email" name="" placeholder="Email">
<input type="textarea" name="" placeholder="Type your message here">
<button type="submit">signUp</button>
</form>
</div>
</div>
</body>
</html>