-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinheritance_demo.html
More file actions
45 lines (44 loc) · 1.15 KB
/
inheritance_demo.html
File metadata and controls
45 lines (44 loc) · 1.15 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
<!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>Inheritance Demo</title>
<link rel="stylesheet" href="inheritance.css" />
</head>
<body>
<body>
<h1>Main Heading</h1>
<div>
<h2>Heading 1</h2>
<form>
<label>username: </label>
<input type="text" placeholder="username" />
<label>password: </label>
<input type="password" placeholder="password" />
<button>Login</button>
</form>
<hr />
</div>
<div>
<h2>Heading 2</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Nesciunt
inventore saepe, reiciendis dolorem illo culpa velit odio pariatur,
officia ad veniam itaque adipisci veritatis quos tenetur. Ut autem
dolores mollitia!
</p>
<hr />
</div>
<div>
<p>
<ul>
<li>a</li>
<li>b</li>
</ul>
</p>
</div>
</body>
</body>
</html>