-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAssignment.html
More file actions
59 lines (52 loc) · 985 Bytes
/
Assignment.html
File metadata and controls
59 lines (52 loc) · 985 Bytes
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>Index</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/reset.css">
<style type="text/css">
div{
margin-left:300px;
}
h1,h2{
font-family: sans-serif;
}
body {
background-color: rgb(211,211,211) ;
}
#quote{
width: 600px;
margin: auto;
border-style: solid;
border-color: #F8F8FF;
border-width: 2px;
padding: 20px;
text-align:center;
}
#quote1{
width: 600px;
margin: auto;
border-style: solid;
border-color: white;
border-width: 2px;
padding: 20px;
text-align:center;
}
</style>
</head>
<body>
<div>
<h1>My First Website</h1>
<p>Welcome to my website! Here are some things I enjoy.</p>
<ul>
<li>Web Development</li>
<li>Chess</li>
<li>Reading </li>
<li>learning</li>
</ul>
<h2> Favourite quotes</h2>
</div>
<p id="quote"> Here is a favourite quote of mine...</p><br>
<p id="quote1"> ...and another</p>
</body>
</html>