-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (62 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
69 lines (62 loc) · 1.92 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="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="About Me - [Your Name], [Your Profession/Student]">
<title> Mike Hankins - Home</title>
<link rel="icon" href="images/Gradient.jpeg" type="image/jpeg">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1> Mike Hankins </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>
<section>
<h2>About Me</h2>
<p>Hi! I'm Mike Hankins, a student at Atlas School who is passionate about systems design. I have my entire life been intrested in understanding how things "work". No I have found a new passion and learning to build those.</p>
</section>
<section>
<h2>Education</h2>
<p>Applied Science in Health Care - NEO A&M, 2013</p>
<p> Vinita High School - 2002</p>
</section>
</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>