-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathlearn-css-selectors.html
More file actions
44 lines (37 loc) · 1.05 KB
/
Copy pathlearn-css-selectors.html
File metadata and controls
44 lines (37 loc) · 1.05 KB
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
<!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 (selectors)</title>
<link rel="stylesheet" type="text/css" href="learn-css-selectors.css">
</head>
<body>
<h1>CSS Selectors</h1>
<h2 class=title-medium> I'm a class selector</h2>
<h3 id="boss-selector">I'm the ID selector. Here I am a boss </h3>
<div class="look-here">
<p>I'm red</p>
<p>I'm also red</p>
<p>What is going on? why am I blue?!</p>
</div>
<div class="odd-even">
<p>I'm odd number</p>
<p>I'm even number</p>
<p>I'm also odd number</p>
<p>Hm..I'm even number</p>
</div>
<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>