-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (45 loc) · 1.91 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
55
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Portfolio</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="avatar.png" rel="icon" type="image/png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body style="background-color: black;">
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="index.html" class="nav-link active">Home</a>
<a href="AboutMe.html">About Me</a>
<a href="Assignments.html">Assignments</a>
<a href="Projects.html">Projects</a>
<!-- <a href="resources.html">Resources</a>-->
<!-- <a href="Vocabulary.html">Vocabulary</a>-->
</div>
</div>
<div style="text-align: center;">
<div style="background-color: rgb(00,00,00)" class="p-5 h-100 text-center" >
<img src="welcomePage.gif" id="zom" >
</div>
<div style="text-align: left;">
<span id="homeMenu"style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
</div>
</div>
<!--Java that controled the overlay nav-->
<script>
function openNav() {
document.getElementById("myNav").style.width = "100%";
}
function closeNav() {
document.getElementById("myNav").style.width = "0%";
}
</script>
<div class="mt-4 p-5 text-white rounded">
<p class="display-3">
Welcome to my mid-year portfolio! This is a collection of all my projects that I have completed throughout the year. I want to showcase my skills and accomplishments in the field of programming and prototyping. I hope you enjoy and learn more about and my skills in the field of programming and prototyping.
</div>
</body>
</html>