-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 990 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 990 Bytes
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>
<head>
<!-- the below meta tag is default in most modern browsers. however if you have an
older browser, the emojis may not show up properly. In which case you need this meta
tag. Read more here: https://teamtreehouse.com/community/meta-charsetutf8-what-does-this-mean-or-what-does-it-do-i-deleted-it-from-the-code-and-nothing-changed -->
<meta charset="utf-8" >
<title>Grid Master</title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<div class="container">
<div class="zone green">🦊</div>
<div class="zone red">🐰</div>
<div class="zone blue">🐸</div>
<div class="zone yellow">🦁</div>
<div class="zone purple">🐯</div>
<div class="zone brown">🐭</div>
<div class="zone green">🦄</div>
<div class="zone red">🐲</div>
<div class="zone blue">🐷</div>
<div class="zone yellow">🐺</div>
<div class="zone purple">🐼</div>
<div class="zone brown">🐻</div>
</div>
</body>
</html>