-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlearn-css-colors.html
38 lines (29 loc) · 942 Bytes
/
learn-css-colors.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Learn CSS (colors and fonts)</title>
<link rel="stylesheet" type="text/css" href="learn-css-colors.css">
</head>
<body>
<h1>CSS colors and fonts</h1>
<h2>Change the color to red</h2>
<h3>Change the color to blue and font to 30px</h3>
<h4>This text should be <em>pink</em></h4>
<h5>Change the color to your favorite and font to 2em</h5>
<h6>Change the color to yellow and font to 3rem</h6>
<footer>
<p>©
<a href="https://github.com/YaninaTrekhleb">
Here is my GitHub page
</a>
<br>
<a href="https://www.instagram.com/yanina_trekhleb/">
Yes, it looks like promotion.. but also let me put my instagram page...:)
</a>
</p>
</footer>
</body>
</html>