-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (25 loc) · 1.13 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
<!DOCTYPE html>
<html lang = "English">
<head>
<title> INDEX </title>
<meta charset = "UTF-8">
<link rel = "stylesheet" href = "styles/styles.css">
<link rel = "stylesheet" href = "/styles/dropdown.css">
</head>
<body>
<div id = "dropdown-container" class = "dropdown-container">
<button id = "dropdown-button" class = dropdown-button> DIRECTORY </button>
<div class = "dropdown-content">
<a href = "/index.html"> This is the index page! </a>
<a href = "/pages/button.html"> This is the button page! </a>
<a href = "/projects/landingProjects.html"> This is the projects page! </a>
<a href = "/pages/dropdown.html"> This is the dropdown menu page! </a>
<a href = "/programming/c++/index.html"> C++ Learning </a>
</div>
</div>
<div class = "indexText">
<p> This website is being used to learn web development! There will be many projects hosted here (hopefully), but as of now only hosts Project Blue. </p>
</div>
<script src = "/scripts/dropdown.js"> </script>
</body>
</html>