forked from GenerationCoders/Elements-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (67 loc) · 1.96 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
<!doctype html>
<html>
<head>
<title>My Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Welcome to my blog!</h1>
<h2>Welcome to my blog!</h2>
<h3>Welcome to my blog!</h3>
<h4>Welcome to my blog!</h4>
<h5>Welcome to my blog!</h5>
<h6>Welcome to my blog!</h6>
<p>This is a paragraph of text. It's inside a p tag.</p>
<p>This is another paragraph inside another p tag!</p>
<ul>
<li>I'm a bullet point in an unordered list.</li>
<li>I'm another bullet point.</li>
<li>I'm a third bullet point!</li>
</ul>
<ol>
<li>I'm a bullet point in an ordered list.</li>
<li>I'm another bullet point.</li>
<li>I'm a third bullet point!</li>
</ol>
<!-- v2 -->
<p>--------------</p>
<p>Are you bored?</p>
<a href="http://www.boredbutton.com/random">Then click here!</a>
<p>Do you want to know what the weather is?</p>
<a href="https://weather.com/">Then click here!</a>
<p>Are you REALLY bored?</p>
<p>Click the minion!</p>
<a href="https://www.youtube.com/watch?v=ax3ZNv5jqQY"><img style="height:100px;" src="https://media1.fdncms.com/boiseweekly/imager/u/original/3533692/9725166177_3709f6fb0a_o.jpg"></a>
<!-- v3 -->
<p>--------------</p>
<h1 id="author">This page was made by me.</h1>
<h1>I'm a title.</h1>
<h1>I'm another title.</h1>
<p class="sentence">I'm a sentence.</p>
<p class="sentence">I'm another sentence in the same paragraph.</p>
<p class="sentence">Hey, I'm a third sentence!</p>
<!-- v4 -->
<p>--------------</p>
<div class="box">
<h2 class="box-text">box</h2>
</div>
<div class="box ap">
<h2 class="box-text">box 1</h2>
</div>
<div class="box bp">
<h2 class="box-text">box 2</h2>
</div>
<div class="box cp">
<h2 class="box-text">box 3</h2>
</div>
<div class="box dp">
<h2 class="box-text">box 4</h2>
</div>
<div class="box ep">
<h2 class="box-text">box 5</h2>
</div>
<div class="box fp">
<h2 class="box-text">box 6</h2>
</div>
</body>
</html>