-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlesson5.html
More file actions
61 lines (52 loc) · 1.59 KB
/
lesson5.html
File metadata and controls
61 lines (52 loc) · 1.59 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>Title 2</title>
<meta charset="UTF-8" />
<style>
#d1 {
font-size: 18px;
}
/* p{
font-size: 20px;
background-color: aqua;
} */
#t1 {
text-align: right;
direction: rtl;
font-weight: 600;
font-style: italic;
line-height: 120%;
word-spacing: -4px;
letter-spacing: -1px;
}
b{
text-decoration: overline;
}
#s1 {
background-color: red;
}
.cs1 {
color: green;
}
</style>
</head>
<body>
<!-- html entities - non braking space - -->
<h1>White <span id="s1">space</span> in HTML</h1>
<div id="d1">
<p>this page on Copyright © 2020</p>
<p>this is < for example in "</p>
</div>
<div id="d2">
<p>this is <span class="cs1">letter</span> for many space</p>
<pre id="t1">
یه نام خدا
این متن به عنوان یک نمونه از چند خط و تنرین در اسنجا درج شده
امیدوارم بتونم به پاب جی برسم
</pre> <!-- this lines show in mono space font "best for code view" -->
</div>
<p>force <span class="cs1">download</span> <a href="lesson1.html" download="a.html">link</a></p>
<p> slam </p>
</body>
</html>