-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (55 loc) · 1.45 KB
/
index.html
File metadata and controls
72 lines (55 loc) · 1.45 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body class="body">
<h1 id="title">30daysofjavascript</h1>
<ul id="languages" class="lang">
<li>JavaScript</li>
<li>HTML</li>
<li>React</li>
<li>Redux</li>
</ul>
<p id="paragraph">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Neque quia
impedit eum dolore nobis saepe dolorem, consectetur voluptatem non!
Perspiciatis!
</p>
<button id="change">Change Content</button>
<br />
<br />
<input type="text" id="input" />
<br />
<p id="displayInput"></p>
<br />
<br />
<form action="" id="form">
<input type="text" value="" id="name" />
<input type="submit" value="Submit" />
</form>
<br />
<br />
<select name="dropdown" id="dropdown">
<option value="Option 1" selected>Option 1</option>
<option value="Option 2">Option 2</option>
</select>
<p id="selectedValue"></p>
<br />
<br />
<ul id="dynamicUl">
<li>1 Item</li>
</ul>
<button id="addItem">Add Item</button>
<br />
<br />
<img
id="js-logo"
src="https://cdn.pixabay.com/photo/2015/04/23/17/41/javascript-736401_1280.png"
width="500px"
/>
<script type="module" , src="script.js"></script>
</body>
</html>