-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQ1-Assignment.html
More file actions
39 lines (35 loc) · 1.02 KB
/
Copy pathQ1-Assignment.html
File metadata and controls
39 lines (35 loc) · 1.02 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assignment 1</title>
<style>
div{
height: auto;
width: 500px;
border: solid black 2px;
font-size: 17px;
padding: 10px;
}
body{
justify-content: center;
display:flex;
align-items: center;
height: 100vh;
flex-wrap: wrap;
}
</style>
</head>
<body>
<div>
<h3> Hello i am bold text</h3>
<u> This is underlined...Wallah i am underlined</u> <br>
<mark> Hey i am highlighted... Just look at me i am in yellow color</mark>
<p>Hello i am normal text <sup>Hello sir i am superscripted</sup></p>
<p>I am normal text <sub>Hey I am sub text</sub></p>
<p> I am not a small text, <small>I am small text</small></p>
<del>I am the text which is deleted</del>
</div>
</body>
</html>