-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss-fonts.html
51 lines (41 loc) · 1.08 KB
/
css-fonts.html
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
50
51
<!DOCTYPE html>
<html>
<head>
<title>Css fonts</title>
<style type="text/css">
.fontStyle{
/* font-size: 50px;
font-weight: bolder;
font-family: monospace , cursive;
font-style: italic;
font-variant: small-caps ;
*/
/*shorthand property*/
font:italic small-caps bolder 50px cursive;
/*
Websafe fonts : available fonts;
cursive.
small-caps->lower into upper
normal:bydefault;
*/
}
.fas{
color: green;
}
.fab{
color:blue ;
}
</style>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=New+Tegomin&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Train+One&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/4535c0758e.js" crossorigin="anonymous"></script>
</head>
<body>
<span class="fontStyle">
hello jahid <i class="fas fa-ambulance"></i>
<i class="fab fa-facebook-square"></i>
</span>
</body>
</html>