-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS part 2.html
More file actions
27 lines (27 loc) · 817 Bytes
/
CSS part 2.html
File metadata and controls
27 lines (27 loc) · 817 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS part 2</title>
<link rel="stylesheet" href="CSS part 2.css"
</head>
<body>
<h1 id="mainTopic">CSS Practice</h1>
<h3>Let's learn about selectors.</h3>
<!--paragraph 1-->
<p>There are multiple selectors in css.</p>
<!--Paragraph 2-->
<p>Some of them include class selector, id selector etc.</p>
<!--Paragraph 3-->
<p>And we can also combine these too.</p>
<div>
<h5>Did you like the practice set?</h5>
<input type="checkbox" id="yes">
<label for="yes">Yes</label>
<br>
<button>Learn next!</button>
</div>
</body>
</html>