forked from shaheen234/lec6-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (60 loc) · 1.16 KB
/
styles.css
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*To add this stylesheet to your HTML document, here's what you need to do::after
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Page</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<!-- Your HTML content here -->
</body>
</html>
*/
h1 {
font-size: 3rem;
font-weight: 700;
line-height: 1.2;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #333;
margin-top: 2rem;
margin-bottom: 2rem;
}
h2 {
font-size: 2.5rem;
font-weight: 600;
line-height: 1.2;
text-align: left;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #333;
margin-top: 2rem;
margin-bottom: 1rem;
}
h3 {
font-size: 2rem;
font-weight: 500;
line-height: 1.2;
text-align: left;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #333;
margin-top: 1.5rem;
margin-bottom: 0.5rem;
}
p {
font-size: 1.2rem;
line-height: 1.5;
text-align: justify;
color: #666;
margin-top: 1rem;
margin-bottom: 1rem;
}
/* Hammad zaib */
footer{
display: flex;
flex-wrap: wrap;
}
/* Hammad zaib */