-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy path005.html
56 lines (46 loc) · 1.6 KB
/
005.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
52
53
54
55
56
<!--
How to Import Google web Fonts - royalty
Font Awesome - icon , svg , png
What is Responsive design?
HTML and CSS to automatically resize, hide, shrink, or enlarge,
meta and viewport
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- meta - browser instruction on control
viewport - users visible are of web page varies to device
width=device-width - sets screen width
initial-scale=1.0 - initial zoom level -->
<link rel="shortcut icon" href="https://www.guvi.in/images/favicon.ico" type="image/x-icon">
<title>HTML & CSS-4</title>
<link href="https://fonts.googleapis.com/css2?family=Comic+Neue:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
.font-class {
font-family: 'Comic Neue', cursive;
}
</style>
</head>
<body>
<div class="font-class">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugit sapiente quia amet, sint voluptatibus nostrum,
</div>
<p class="font-class" style="font-weight: bold;">
praesentium et quasi cum blanditiis natus? Saepe officiis pariatur voluptates at ipsam nihil sequi doloribus.
</p>
<hr>
<h1>
fontawesome
<i class="fas fa-envelope"></i>
</h1>
<h1>
<!-- https://google.github.io/material-design-icons/ -->
material icon
<span class="material-icons">
backup
</span>
</h1>
</body>
</html>