-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
69 lines (62 loc) · 1.89 KB
/
Copy pathcontact.html
File metadata and controls
69 lines (62 loc) · 1.89 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
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
/>
<link rel="stylesheet" href="style.css">
<head>
<meta charset="UTF-8">
<meta name="description" content="Contact [Your Name]">
<title> Mike Hankins - Contact</title>
<link rel="icon" href="images/Gradient.jpeg" type="image/jpeg">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Contact Me</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="interests.html">Interests</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<form action="#" method="post">
<label>First Name: <input type="text" name="firstname" required></label><br>
<label>Last Name: <input type="text" name="lastname" required></label><br>
<label>Email: <input type="email" name="email" required></label><br>
<label>Phone: <input type="tel" name="phone"></label><br>
<label>
<input type="checkbox" name="newsletter"> Subscribe to newsletter
</label><br>
<button type="submit">Send Message</button>
</form>
</main>
<footer>
<div class="footer-inner">
<div>
<p>Follow me:</p>
<div class="social-links">
<a class="social-pill github"
href="https://github.com/Mike-CX83"
target="_blank"
aria-label="GitHub">
<i class="fa-brands fa-github"></i>
</a>
<a class="social-pill instagram"
href="https://www.instagram.com/thatoneguysjourney?igsh=MXBodThraWRlYThxeg=="
target="_blank"
aria-label="Instagram">
<i class="fa-brands fa-instagram"></i>
</a>
</div>
</div>
<p>© 2025 Mike Hankins</p>
</div>
</footer>
</body>
</html>