-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebsite.html
More file actions
57 lines (54 loc) · 2.32 KB
/
Website.html
File metadata and controls
57 lines (54 loc) · 2.32 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
<!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>Document</title>
</head>
<body>
<div class="container">
<!-- this is a comment -->
<h1 id="heading" class="myhead ray is">Welcome to Tutorials</h1>
<div id="myFirst" class="child red" id="first">child 1
<ul class="this" id="myul">
<li class="childul" id="fui">this</li>
<li class="childul">is</li>
<li class="childul">a</li>
<li class="childul">list</li>
<li class="childul" id="lui">of my dreams</li>
</ul>
</div>
<div class="child">child 2</div>
<div class="child">child 3</div>
<div class="child">child 4</div>
<form action="none.html" method="post">
<a href="//codewithharry.com">Go to codewithharry</a>
<br>
<br>
Search this website: <input type="text" name="Hello" id="">
<!-- <input type="button" id="btn" value="Submit"> -->
<!-- <input type="submit" id="btn" value="Submit"> -->
<button id="btn">Submit form</button>
</form>
</div>
<br>
<div class="no">this is a dummy div1</div>
<div class="no">this is a dummy div2</div>
<div class="no">this is a dummy div3</div>
</body>
<!-- <script src="js/11- DOM.js"></script> -->
<!-- <script src="js/tut13.js"></script> -->
<!-- <script src="js/12- HTML Element Selector.js"></script> -->
<!-- <script src="js/13- Child, Parent and Travesring.js"></script> -->
<!-- <script src="js/14- Creating, Removing and Replacing Elements.js"></script> -->
<!-- <script src="js/15- Events and Event Object.js"></script> -->
<!-- <script src="js/16- More on Events.js"></script> -->
<!-- <script src="js/18- Local & Session Storage.js"></script> -->
<!-- <script src="js/19- Math Object.js"></script> -->
<!-- <script src="js/20- Date Object.js"></script> -->
<!-- <script src="js/21- Object Literals, Constructors.js"></script> -->
<!-- <script src="js/22- Prototype Inheritance.js"></script> -->
<!-- <script src="js/23- ES6 Classes and Inheritance.js"></script> -->
<script src="js/24- Asynchronous Programming.js"></script>
</html>