-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformatting.html
More file actions
46 lines (34 loc) · 1.1 KB
/
formatting.html
File metadata and controls
46 lines (34 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formatting</title>
</head>
<body>
<ol type = "A">
<li>A</li>
<li>B</li>
<li>C</li>
<li>D</li>
</ol>
<!-- function of mark -->
<p>Lorem ipsum dolor <mark> BIGBOSS</mark>sit amet consectetur adipisicing elit. Pariatur minima ipsam soluta illo, dolorum et fugiat veniam saepe tempora esse.</p>
<p>Price drop alert <del>2000</del> 2000</p>
<p>H<sub>2</sub>0</p>
<p style="text-align: center;
background-color: aquamarine;
text-transform: uppercase;
color: yellow;
">This is Paragraph</p>
<p>This is <strong>FANNG</strong></p>
<form action="">
Enter Your Name : <input type="text"> <br/>
Enter Your Email : <input type="email"> <br/>
Male : <input type="radio"> Femail <input type="radio"> Others <input type="radio">
<br/>
Password <input type="password"> <br/>
<input type="checkbox"> All are Okey
</form>
</body>
</html>