-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcryptokitties.html
48 lines (43 loc) · 1.43 KB
/
cryptokitties.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Grid Playground</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="grid">
<header class="site-header">
<div class="header-branding">
<div class="logo"></div>
<h1 class="site-title">CryptoKitties</h1>
</div>
<div class="header-links">
<a class="link" href="#">Sign in</a>
<a class="link" href="#">Marketplace</a>
</div>
</header>
<div class="site-description">
<h2>Collectible.</br>Breedable.</br>Adorable.</h2>
<p class="site-tagline">Collect and breed digital cats.</p>
</div>
<div class="cat-mosaic">
<div class="mosaic"></div>
<div class="mosaic"></div>
<div class="mosaic"></div>
<div class="mosaic"></div>
<div class="mosaic"></div>
<div class="mosaic"></div>
<div class="mosaic"></div>
<div class="mosaic"></div>
</div>
<div class="main">
<section class="about">
<h2>What's the big deal?</h2>
<p>CryptoKitties is a game centered around breedable, collectible, and oh-so-adorable creatures we call CryptoKitties! Each cat is one-of-a-kind and 100% owned by you; it cannot be replicated, taken away, or destroyed.</p>
</section>
</div>
<footer>Footer</footer>
</div>
</body>
</html>