-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskill.html
51 lines (41 loc) · 1.28 KB
/
skill.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!--this is internal css-->
<style>
p{
color: palevioletred;
}
h1{
color: gold;
}
</style>
</head>
<body>
<h1>What can stunner do</h1>
<p>he can do many suffs</p>
<ul>
<li>he can jump</li>
<li>he can run</li>
<a href="index.html">Open home page<a>
<a href="skill.html">Open skill page<a>
<a href="contact.html">Open contact page<a>
</ul>
<h1>WORKING WITH DIVS</h1>
<h1>SECOOND H1</h1>
<!--THIS IS A SAMPLE DIV-->
<div style="background-color: blue; color: aquamarine; height: 100px; width: 600px;">
<h3 style="color: brown;">DIV ONE</h3>
<P>Divs are the containers of the element helps us organise content and create layout </P>
<div>
<p style="color: antiquewhite; width: 400px; background-color: darkblue;">this is a pixel div, absolute size</p>
</div>
<div>
<p style="color: blueviolet; width: 80%; background-color: darkgreen;">this is a percentage div, relative size</p>
</div>
</div>
</body>
</html>