-
Notifications
You must be signed in to change notification settings - Fork 13
/
test.html
27 lines (24 loc) · 820 Bytes
/
test.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Testing HTML, CSS, and JavaScript</title>
<link rel="stylesheet" href="test.css" />
</head>
<body>
<article>
<h1>Hello, world!</h1>
<p>This is some <em>more</em> text that will be displayed on my website.</p>
<p class="red">Some more text that is <strong>supposed</strong> to be a different paragraph.</p>
<img src="../d3/img/cat.jpg" alt="This is an image of a smiling cat." />
<img src="http://placekitten.com/g/200/300" alt="Another image of a cat. This time a kitten." />
</article>
<!-- This is how we write a comment. -->
<div id="MySpecialDiv">
This is some text inside a div.
</div>
<div class="red">
This is text inside another div.
</div>
</body>
</html>