-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtmltutorial.html
More file actions
58 lines (57 loc) · 1.23 KB
/
Copy pathhtmltutorial.html
File metadata and controls
58 lines (57 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title>HTML Tutorial | rowannerd</title>
<style>
body {
background-color: rgb(0, 10, 200);
font-family: sans-serif;
width: 600px;
}
.middle {
text-align: center;
}
.greent {
color: rgb(0, 250, 0);
}
.hspace {
height: 100px;
}
a {
color: rgb(250, 0, 250);
text-decoration: none;
}
h3 {
font-size: 30px;
}
h4 {
font-size: 25px;
}
.small {
font-size: 20px;
}
#header {
position: fixed;
background-color: rgb(0, 20, 210);
top: 0px;
left: 0px;
width: 600px;
}
h1 {
text-align: center;
}
</style>
</head>
<body class="greent">
<h1 class="middle">HTML Tutorial | rowannerd</h1>
<div class="hspace"></div>
<h4>Contents</h4>
<ul>
<li><a href="#intro">Introduction</a></li>
<li><a href="#basic">HTML Basic Tags</a></li>
</ul>
<div class="hspace"></div>
<h4 id="intro">Introduction</h4>
<p>HTML (Hyper Text Markuup Language) is the base of website creating. It can use Javascript, as well as CSS.</p>
</body>
</html>