forked from zero-to-mastery/Canvas-Creations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (38 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="style.css" />
<link
rel="stylesheet"
type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css"
/>
<link
rel="icon"
type="image/png"
href="https://www.google.com/s2/favicons?domain=https://hacktoberfest.digitalocean.com/"
/>
<title>Canvas Creations - ZTM Hacktoberfest 2020</title>
</head>
<body>
<div class="header" id="head">
<h1>Canvas Creations</h1>
<h2>A ZTM Challenge for Hacktoberfest 2020</h2>
</div>
<ul class="flex" id="cards">
<!-- Content is generated dynamically -->
<!-- Add your card in include.js following the instructions -->
</ul>
<footer id="footer">
<div>© 2020 Zero To Mastery Inc.</div>
</footer>
<script src="include.js"></script>
</body>
</html>