-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.65 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.65 KB
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
<!DOCTYPE html>
<html>
<head>
<title>First website using CSS!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="row" id="top">
<h1>Welcome to my world</h1>
</div>
<div class="row" id="body">
<div class="col-4">
<h4>My best friend</h4>
<img alt="catimage" src="cat.jpg">
<p>I don't know what it is about cats but they make anything funny!</p>
</div>
<div class="col-4">
<h4>Column 2</h4>
<p>One time when I was just a wee lad,I kept sticking a stikc in the honey bee's beehive that was in my neghbours house.After 10 times the bees got mad and out came the swarm.I've never ran faster.Only 22 bee stings.Not too bad.</p>
</div>
<div class="col-4">
<h4>Column 3</h4>
<p>ever wonder if the world is flat?When I retire, I am snearking into Antarctica and hiking to the "edge"...Who's with me?</p>
</div>
</div>
<div class="container" id="bottom">
<div class="row">
<div class="col-2"><h1>TIME</h1></div>
<div class="col-10"></div>
</div>
<div class="row">
<div class="col-2"></div>
<div class="col-8"><h1>TO GET</h1></div>
<div class="col-2"></div>
</div>
<div class="row">
<div class="col-10"></div>
<div class="col-2"><h1>TRICKY</h1></div>
</div>
</div>
</body>
</html>