-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (90 loc) · 2.95 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kitteh Co</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
Kitteh Co
<nav>
<ul>
<li><a href="#mission">R Mishun</a></li>
<li><a href="#products">Wut U Can Has</a></li>
<li><a href="#employees">Kittehs Hoo Werk Her</a></li>
</ul>
</nav>
</header>
<main>
<section class="banner">
<h1>Kitteh Co</h1>
</section>
<section id="mission">
<h2>R Mishun</h2>
<h3>Murdr things dat moov rite aftr dis nap</h3>
</div>
</section>
<section id="products">
<h2>Wut U Can Has</h2>
<div class="container">
<div class="product">
<img src="images/i-can-has-cheezburger.jpg" alt="Happy Cat">
<br>
<h3>Cheezburger</h3>
</div>
<div class="product">
<img src="images/cat-breading.jpg" alt="cat with its head through a slice of bread">
<br>
<h3>Bread</h3>
</div>
<div class="product">
<img src="images/murder-weapons.jpg" alt="cat pawing one of four knives">
<br>
<h3>Murdr weapons</h3>
</div>
</div>
</section>
<section id="employees">
<h2>Kittehs Hoo Werk Her</h2>
<div class="container">
<div class="employee">
<img src="images/business-cat.jpg" alt="Business Cat">
<br>
<h3>CEO</h3>
</div>
<div class="employee">
<img src="images/grumpy-cat.jpg" alt="Grumpy Cat">
<br>
<h3>CFO</h3>
</div>
<div class="employee">
<img src="images/typing-cat.jpg" alt="Typing Cat">
<br>
<h3>CTO</h3>
</div>
<div class="employee">
<img src="images/nyan-cat.jpg" alt="Nyan Cat">
<br>
<h3>Rainbow makr</h3>
</div>
<div class="employee">
<img src="images/keyboard-cat.jpg" alt="Keyboard Cat">
<br>
<h3>Composr</h3>
</div>
<div class="employee">
<img src="images/vibing-cat.gif" alt="CatJAM">
<br>
<h3>Vibr</h3>
</div>
</div>
</section>
</main>
<footer>
<p>im in ur footr copyin ur rights</p>
</footer>
</body>
</html>