-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (59 loc) · 2.83 KB
/
index.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
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.second {
background-color: green;
color: white;
font-size: 18px;
}
</style>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML/CSS Practice</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!--01-css-methods-->
<h1 class="first">Style me via the external method!</h1>
<p class="second">I would like to be styled with the internal method, please.</p>
<button style="font-size: 18px; background-color: orange;">Inline Method</button>
<!--02-class-id-selectors-->
<p style="margin-top: 36px;" class="odd">Number 1 - I'm a class!</p>
<div id="even1">Number 2 - I'm one ID.</div>
<p class="odd odd3">Number 3 - I'm a class, but cooler!</p>
<div id="even2">Number 4 - I'm another ID.</div>
<p class="odd">Number 5 - I'm a class!</p>
<!--03-grouping-selectors-->
<button style="margin-top: 36px;" class="groupingbutton1">Click Me!</button>
<button class="groupingbutton2">No, Click Me!</button>
<!--04-chaining-selectors-->
<div style="margin-top: 36px;">
<img class="avatar proportioned" src="https://github.com/TheOdinProject/css-exercises/blob/main/foundations/04-chaining-selectors/pexels-katho-mutodo-8434791.jpg?raw=true" alt="Woman with glasses">
<img class="avatar distorted" src="https://github.com/TheOdinProject/css-exercises/blob/main/foundations/04-chaining-selectors/pexels-andrea-piacquadio-3777931.jpg?raw=true" alt="Man with surprised expression">
</div>
<div>
<img class="original proportioned" src="https://github.com/TheOdinProject/css-exercises/blob/main/foundations/04-chaining-selectors/pexels-katho-mutodo-8434791.jpg?raw=true" alt="Woman with glasses">
<img class="original distorted" src="https://github.com/TheOdinProject/css-exercises/blob/main/foundations/04-chaining-selectors/pexels-andrea-piacquadio-3777931.jpg?raw=true" alt="Man with surprised expression">
</div>
<!--05-descendant-combinator-->
<div style="margin-top: 36px;" class="container">
<p class="text">This should be styled.</p>
</div>
<p class="text">This should be unstyled.</p>
<p class="text">This should be unstyled.</p>
<div class="container">
<p class="text">This should be styled.</p>
<p class="text">This should be styled.</p>
</div>
<!--06-cascade-fix-->
<p class="para">I'm just a paragraph with extra bold text!</p>
<p class="para small-para">I'm a smaller paragraph, also with extra bold text!</p>
<button id="confirm-button" class="button confirm">Confirm</button>
<button id="cancel-button" class="button cancel">Cancel</button>
<div class="text">I'm a div with thin text!</div>
<div class="text">I'm a div with thin text and a child div!
<div class="text child">I'm a smaller child div with extra bold text.</div>
</div>
</body>
</html>