forked from zero-to-mastery/CSS-Art
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (28 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Bungee+Inline|Open+Sans" rel="stylesheet">
<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="index.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<title>CSS Art - ZTM Hacktoberfest</title>
</head>
<body>
<div class="header" id="head">
<h1>Css ART</h1>
<h2>A ZTM Challenge for Hacktoberfest</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>
© 2017-2019 Zero To Mastery Inc.
</div>
</footer>
<script src="include.js"></script>
</body>
</html>