-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello-world-fancy.html
50 lines (50 loc) · 1.49 KB
/
hello-world-fancy.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
<html>
<head>
<title>Hello (fancy with CSS)</title>
</head>
<body>
<div>
<h1>Hello World (fancy edition)</h1>
</div>
<div>
<p>
This is my first web page, and it has many paragraphs
</p>
<p>
This paragraph is so fancy it even has text
in <b>bold</b> and <i>italics</i>.
</p>
<p>And here is a list of programming languages:</p>
<ul>
<li>Ruby</li>
<li>Java</li>
<li>Python</li>
</ul>
<p>This is a quote by <a href="https://www.ursulakleguin.com/a-rant-about-technology" target="_blank">Ursula K. Le Guin</a></p>
<blockquote>
"Technology is the active human interface with the material world."
</blockquote>
<p class="important-paragraph">
This paragraph is very important.
</p>
<p>
We even have a <a href="hello-world.html">link to our original hello-world page</a>.
</p>
<p>
This paragraph even has a <button id="do-nothing-button">button</button> that does nothing
</p>
<!-- this is multi-line a comment, the browser ignores it
(i.e. it does not show on the page) -->
<p class="important-paragraph">
This paragraph is also very important.
</p>
</div>
<div>
<p>And here is more content and a photo<p>
<img src="./public/chicago-street-art.jpg" alt="Chicago street art"/>
</div>
<footer>
This is the footer of the page.
</footer>
</body>
</html>