-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharea.html
More file actions
59 lines (59 loc) · 1.31 KB
/
Copy patharea.html
File metadata and controls
59 lines (59 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Area | rowannerd</title>
<style>
body {
background-color: rgb(0, 10, 200);
font-family: sans-serif;
width: 600px;
font-color: green;
}
.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">Area | rowannerd</h1>
<h2>Contents</h2>
<ul><b>
<li><a href="#intro">What is Area?</a></li>
</ul></b>
<div class="hspace"></div>
<h2 id="intro">What is Area?</h2>
<p>Area is the amount of space an object takes up. Everything has area. Take this rectangle for example: </p>
<svg width="400" height="110">
<rect width="300" height="100" style="fill:rgb(247,255,0);stroke-width:0;stroke:rgb(0, 10, 200);" />
</svg>
</body>
</html>