-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.19 KB
/
index.html
File metadata and controls
36 lines (32 loc) · 1.19 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Learn CSS</title>
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhaijaan|Josefin+Sans|Roboto+Condensed" rel="stylesheet">
<link rel="stylesheet" href="style1.css">
</head>
<body>
<h1>Hello trial run</h1>
<h2>I need more headers for this project</h2>
<ul>
<li>I learnt Inline skating</li>
<li>It was the year 2014</li>
<li>I love it for two reasons</li>
<ol>
<li>It increases my agility</li>
<li>It helps me stay alert</li>
</ol>
<li>Skating is fun, you should try it too!!!</li>
</ul>
<h2>So are you ready to join the skate gang???</h2>
<div class="formatting">
<div><b>I am so bold</b></div>
<div><i>I am leaning over</i></div>
<div><em>I am so emphasised</em></div>
<div><strong>I am so strong</strong></div>
<div><del>Please do not delete me</del></div>
<div><mark>Mark my words...</mark></div>
</div>
<a href="#">Click me now</a>
</body>
</html>