-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (76 loc) · 3.34 KB
/
Copy pathindex.html
File metadata and controls
80 lines (76 loc) · 3.34 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
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel = "stylesheet" href = indexStyles.css>
<script src="https://kit.fontawesome.com/8588677c14.js" crossorigin="anonymous"></script>
<link rel = "icon" type = "img/png" href = "images/chosenFavicon.png">
<title>Portfolio Thompson</title>
</head>
<body id = "everything">
<!-- Navbar Section -->
<nav class="navbar">
<div class="navbarContainer">
<a href="/" id="navbarLogo">Micah</a>
<div class="navbarToggle" id="mobileMenu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbarMenu">
<li class="navbarItem"><a href="index.html" class="navbarLinks">
Home
</a></li>
<li class="navbarItem"><a href="aboutMe.html" class="navbarLinks">
About Me
</a></li>
<li class="navbarItem"><a href="endeavors.html" class="navbarLinks">
Endeavors
</a></li>
<li class="navbarContact"><a href="mailto: micah18thompson@gmail.com" class="button">
Contact
</a></li>
</ul>
</div>
</nav>
<!-- Main Section -->
<div class="main">
<div class="mainContainer">
<div class="mainContent">
<h1>Micah Thompson</h1>
<h2> Computer Science Student</h2>
<button class="mainButton"><a href="mailto: micah18thompson@gmail.com"> HIRE ME </a></button>
</div>
<div class="mainImgContainer"><img src="images/computer.svg" alt="Computer Picture" id = "mainImg"></div>
</div>
</div>
<!-- Footer Section -->
<footer class="footer">
<div class="footerContainer">
<div class="footerContent">
<h1> © 2024 Micah Thompson </h1>
<!-- Language Function In Progress...-->
<!-- <div class="languageContainer">
<div class="buttonContent">
<ul class="languages">
<li class="languageItem" id = "english"> English </li>
<li class="languageItem" id = "spanish"> Spanish </li>
<li class="languageItem" id = "french"> French </li>
<li class="languageItem" id = "german"> German </li>
</ul>
</div>
<div class="buttonContainer">
<button class="changeLanguageButton"> Language </button>
</div>
</div> -->
<div class="footerIcons">
<a target = "_blank" href="https://www.linkedin.com/in/micah-thompson-4972a7298"><i id = "linkedin" class="fa-brands fa-linkedin"></i></a>
<a target = "_blank" href="https://www.github.com/MicvhT"><i id = "github" class="fa-brands fa-square-github"></i></a>
</div>
</div>
</div>
</footer>
<script src="indexScripts.js"></script>
</body>
</html>