-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (64 loc) · 1.76 KB
/
Copy pathindex.html
File metadata and controls
69 lines (64 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Page Title</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='color-style.css'>
<link rel='stylesheet' type='text/css' media='screen' href='selector-style.css'>
<link rel='stylesheet' type='text/css' media='screen' href='width-height.css'>
<link rel='stylesheet' type='text/css' media='screen' href='margin-padding.css'>
<script src='main.js'></script>
<style>
h2 {
color: brown;
}
</style>
</head>
<body>
<!--inline style-->
<h1 style="color: blueviolet;">Welcome to css</h1>
<!--internal style-->
<h2>Lets Start</h2>
<!--external style-->
<div class="subheader-1">Please like & subscribe</div>
<div class="subheader-2">Please like & subscribe</div>
<div class="subheader-3">Please like & subscribe</div>
<div class="subheader-4">Please like & subscribe</div>
<span>Selector</span>
<div>
<p>One</p>
<p id="p-green">Two</p>
<p class="p-blue">Three</p>
</div>
<h3>A</h3>
<h2>A</h2>
<h1>A</h1>
<div class="parent">
<p>p1</p>
<p>p2</p>
<p>p3</p>
<p>p4</p>
<div class="child">
<p>c1</p>
<p>c2</p>
<p>c3</p>
</div>
</div>
<div>
<div class="sibling">
<p>s1</p>
<p>s2</p>
<p>s3</p>
<p>s4</p>
</div>
<p>p1</p>
<p>p2</p>
<p>p3</p>
</div>
<a href="#">link</a>
<input type="text" name="username">
<input type="password" name="password">
</body>
</html>