-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
54 lines (54 loc) · 1.46 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML/CSS Fundamentals</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
</head>
<body>
<header>
<div class="logo">
<i class="fa-solid fa-code"></i>
OpenCodeChicago
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>Contact us</h1>
<div class="container">
<form class="form_container">
<input
type="text"
id="fullName"
name="fullName"
placeholder="Your Name"
/>
<input type="email" placeholder="Your Email" />
<input type="password" placeholder="Your Password" />
<textarea cols="30" rows="5" placeholder="Your Message"></textarea>
<button type="submit">
Submit <i class="fa-solid fa-rocket"></i>
</button>
</form>
</div>
</main>
<footer>
<div class="logo">
<i class="fa-solid fa-code"></i>
OpenCodeChicago
</div>
<p>All rights reserver 2024 © OpenCodeChicago</p>
</footer>
</body>
</html>