-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (44 loc) · 1.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Links Webpage Demo</title>
<!--------->
<!-- css -->
<!-- fonts -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@600&display=swap" rel="stylesheet">
<!-- stylesheets -->
<link rel="stylesheet" href="styles.css">
<!--------->
<!-- scripts -->
<script src="scripts.js"></script>
</head>
<body>
<!-- content here -->
<main>
<noscript>
<div class="banner">
<p>It looks like JavaScript is currently disabled for your browser. We recommend enabling JavaScript in order for the site to function as anticipated.</p>
</div>
</noscript>
<header>
<div id="header-img"></div>
<h1>Links Webpage Demo</h1>
</header>
<!-- link template -->
<template id="link-template">
<a data-link-row class="link-row" href="">
<p data-link-label></p>
</a>
</template>
<!-- where links will be placed -->
<div data-links-container>
<!-- links here -->
</div>
<footer>
<p>Optional Footer here</p>
</footer>
</main>
</body>
</html>