-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
41 lines (41 loc) · 1.23 KB
/
page.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Commpatible" content="IE=Edge">
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<title>My page</title>
</head>
<body>
<h1>My page</h1>
<p>This is a <a href="link">simple</a> Link</p>
<!--this is a comment-->
<hr>
<h2>This is heading 2</h2>
<p>This <em>is <strong>correct</strong></em></p>
<p>line <br> break <br> test</p>
<p>R&C</p>
<!-- testing out HTML coding-->
<hr>
<h2>Unordered list</h2>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h2>Ordered list</h2>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<ul>
<li>Item 3.1</li>
<li>Item 3.2</li>
</ul>
</ol>
<!-- testing out lists-->
<p>
<img src="assets/images/Yellow_Flowers.png"alt = "Flower" style="float: left; margin-right: 30px;">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Blanditiis, numquam.
</p>
</body>
</html>