-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (23 loc) · 818 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS/HTML/CSS Mastery</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="body-container">
<h2>Here is an accumulation of microprojects <br>using HTML, CSS, and JavaScript for mastery!</h2>
<div class="button-container">
<a class="button" href="/expanding-cards">Expanding Cards</a>
</link>
<a class="button" href="/github-cards">Github Profile Cards</a>
<a class="button" href="/progress-steps">Progress Steps</a>
<a class="button" href="/sticky-navbar"">Sticky Navbar</a>
</div>
</div>
</body>
<script src="./script.js"></script>
</html>