-
Notifications
You must be signed in to change notification settings - Fork 0
/
new-page.html
35 lines (32 loc) · 963 Bytes
/
new-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
<!DOCTYPE html>
<html>
<head>
<link href="css/focused-tag-style.css" rel="stylesheet" type="text/css">
<title>Mr Jimmy Kiarie</title>
</head>
<body>
<p>Our CEO below is the best</p>
<p class="focus">Let us test our focused stylesheet</p>
<img src="images/jimmy.jpeg">
<!-- Working with div tags -->
<p>This sections indicates the fruits I like</p>
<div class="focused">
<ul>
<li>mangoes</li>
<li>oranges</li>
<li>kiwi</li>
</ul>
</div>
<p>This sections indicates the Animals I like</p>
<div class="unfocused">
<ul>
<li>lion</li>
<li>goat</li>
<li>mammoth</li>
</ul>
</div>
<div>
<p>This sections uses a <span class="focus">span</span> </p>
</div>
</body>
</html>