-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlesson1.html
More file actions
39 lines (37 loc) · 1.32 KB
/
lesson1.html
File metadata and controls
39 lines (37 loc) · 1.32 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
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>Title 1</title>
<meta charset="UTF-8" />
<link href="stylsheet.css" rel="stylesheet"/>
<style>
p{
font-size: 20px;
background-color: aqua;
}
#t1 {
text-align: right;
direction: rtl;
}
b{
text-decoration: overline;
}
</style>
</head>
<body>
<!-- this part is comment -->
<h1>White space in HTML</h1>
<p>mater <b>one</b> in line 1<br/>
matter 2 in line <strong>two</strong></p>
<hr>
<p>this is a sub <b><i style="color: cadetblue;">description</i></b> for test many lines in a page . for many works he say ya ali . and ali yaretoon.</p>
<p id="t1">این یک متن فارسی هست که بخشی از آن english است و باید درستش کرد.</p>
<p>
Link to google<a href="https://google.com">Google</a>
</p>
<p>super script text H<sup>2</sup>O .</p>
<p>sub script text H<sub>2</sub>O .</p>
<p>super script text <mark style:"background-color:red"> H<sup>2</sup>O</mark> .</p>
<p>in ths line many characters is <small style="color:red">smaller</small> than all</p>
</body>
</html>