-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPractical_1(A).html
More file actions
49 lines (48 loc) · 1.1 KB
/
Practical_1(A).html
File metadata and controls
49 lines (48 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
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simple Page Using HTML</title>
</head>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
padding: 1rem;
}
ol {
font-size: 2.5rem;
text-align: left;
margin: 5rem 0 0 5rem;
list-style: lower-roman;
}
ol > li {
padding: 1rem;
}
h1 {
font-size: 5rem;
text-align: center;
}
</style>
<body>
<h1>What is HTML!</h1>
<ol>
<li>
<b>HTML (HyperText Markup Language)</b> is the standard markup language
used to create <i>web pages</i>.
</li>
<li>
It structures content on the web by using a series of elements (also
known as <u>tags</u> ) that describe the content and its layout.
</li>
<li>
HTML is the foundation of all web pages, and it's often paired with
<u> CSS(for styling) and JavaScript (for interactivity)</u>.
</li>
</ol>
</body>
</html>