-
Notifications
You must be signed in to change notification settings - Fork 0
/
planets.html
39 lines (39 loc) · 1.12 KB
/
planets.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Margins,Padding,Border Style,Ol,Ul</title>
<link rel="stylesheet" href="/planets.css" type="text/css">
</head>
<body>
<h1 style="text-align: center;">Planets : </h1>
<div id="firstDiv">
<a href="https://www.google.co.in/" class="item">Google</a>
<a href="https://www.youtube.com/" class="item">Youtube</a>
<ol id="orderedList">
<li>Mercury</li>
<li>Venus</li>
<li>Earth</li>
<li>Mars</li>
<li>Jupiter</li>
<li>Saturn</li>
<li>Neptune</li>
<li>Uranus</li>
</ol>
</div>
<div id="secondDiv">
<ul id="unorderedList">
<li>Mercury</li>
<li>Venus</li>
<li>Earth</li>
<li>Mars</li>
<li>Jupiter</li>
<li>Saturn</li>
<li>Neptune</li>
<li>Uranus</li>
</ul>
</div>
</body>
</html>