-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtut17.html
More file actions
28 lines (27 loc) · 900 Bytes
/
tut17.html
File metadata and controls
28 lines (27 loc) · 900 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Fonts</title>
<style>
p{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size:25px;
}
span{
font-weight: bold;
font-style: oblique;
}
</style>
</head>
<body>
<h2>Hello my name is Chintan Patel..!!</h2>
<!-- You can change the font format using font family command -->
<!-- As you can see many format there in above command so if first font format is not found then it goes to next one.. -->
<p>Hello ADIT</p>
<span>Chintan Patel</span>
<!-- Also you can find the font format in web site or apply it on your website.. -->
</body>
</html>