-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (25 loc) · 874 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
28
29
<html lang="en">
<head>
<title>Single Div</title>
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./index.css">
</head>
<body>
<main>
<div class="wrapper">
<div class="container container--mallow">
<div id="squishyMallow"></div>
</div>
<div class="container container--marceline">
<div id="marceline"></div>
</div>
<div class="container container--creeper">
<div id="creeper"></div>
</div>
<div class="container container--harryPotter">
<div id="harryPotter"></div>
</div>
</div>
</main>
</body>
</html>