-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.02 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lesson9</title>
</head>
<body>
<a class="linck" href="https://www.w3schools.com/jsref/dom_obj_select.asp"
>linc</a
>
<h2 class="head">header1</h2>
<h2 class="head">header2 <span class="inner">inner elem1</span></h2>
<h2>header3</h2>
<h2 class="head">header4<span>inner elem2</span></h2>
<h2>header5</h2>
<h3>header1</h3>
<div>text1</div>
<h3>header2</h3>
<div>text2</div>
<div>
<form id="check">
<input type="checkbox" name="check1" value="first" />
<input type="checkbox" name="check2" value="second" />
<input type="checkbox" name="check3" value="third" />
<input type="checkbox" name="check4" value="fourth" />
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>