-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.html
More file actions
32 lines (29 loc) · 784 Bytes
/
Copy pathSystem.html
File metadata and controls
32 lines (29 loc) · 784 Bytes
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
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/main.css">
<style type="text/css">
div{
font-size:50px;
text-align: center;
}
.heading{
text-align: center;
background: grey;
color:red;
font-family: algerian;
text-decoration: underline;
font-style: italic;
}
</style>
</head>
<body>
<h1 class="heading">Bold,Italic,Emphasize,Blockquote,Center,Strike</h1>
<div>
<b style="text-align:center">this is bold tag</b><br>
<i style="text-align:center">this is italic tag</i><br>
<em style="text-align:center">this is emphasize tag</em><br>
<q style="text-align:center">this is blockquote tag</q><br>
<strike style="text-align:center">this is strike tag</strike><br>
<center style="text-align:center">this is center tag</center><br>
</div>
</body>