-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlecture-2.html
114 lines (85 loc) · 2.4 KB
/
lecture-2.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Styles</title>
<!-- internal css -->
<style>
/* css property and values */
.style-list {
color: red;
background-color: orange;
}
.style-ul-list {
list-style-type: square;
background-color: pink;
}
</style>
</head>
<body>
<div>
<!-- Lists -->
<!-- unordered list
li-> list item -->
<h3>Web technologies</h3>
<!-- inline css -->
<ul class="style-ul-list">
<li class="style-list">HTML</li>
<li class="style-list">CSS</li>
<li class="style-list">JS</li>
<li class="style-list">ReactJs</li>
</ul>
<!-- ordered list
type="I" type="i" type="a" type="A" -->
<ol type="A">
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
<li>ReactJs</li>
</ol>
<ol start="4" reversed>
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
<li>ReactJs</li>
</ol>
<!-- description list
dt-definition term
dd->description defination-->
<dl>
<dt>HTML</dt>
<dd>is used to structure <b>webpage.</b></dd>
<dt>CSS</dt>
<dd>is used to style <i>webpage.</i></dd>
</dl>
<!-- Formatting elements -del, sup, sub -->
<p>Hello <del>world<del></del></p>
<p>2 <sup>3</sup> = 2 × 2 × 2 = 8</p>
<p>log <sub>10</sub> </p>
<!-- Quotation elements -->
<address>
By alex joe <br>
visit us:<br>
admin.com<br>
Street 201<br>
USA
</address>
<p>HTML <abbr title="Hyper Text Markup Language">HTML</abbr></p>
<q style="font-size: 40px;">Adding quotes</q>
<p>Hi, this is <span style="color: red">Alina.</span></p>
<div style="text-align: center; background-color: orange;">
<img src="./download.png" alt="html">
</div>
<p>₹ 20000 </p>
<p>© Rights belong to Edyoda</p>
<p> 3 > 2
<
>
</p>
<p>Hi, This is <span style="color:red; display: block;">Alex.</span></p>
</div>
</body>
</html>
<!-- pseudo element
::marker
-->