-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathabout.html
76 lines (75 loc) · 1.84 KB
/
about.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="./images/cream.ico">
<title>About Page</title>
<style>
.container {
text-align: center;
}
.owner {
background-color:rgb(0, 96, 255);
color: white;
border: 2px solid navy;
margin: 20px;
padding: 20px;
}
.secondaryowner {
background-color: tomato;
color: white;
border: 2px solid maroon;
margin: 20px;
padding: 20px;
}
h1 {
border: 4px solid white;
color: white;
background-color: #808080;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 32px;
margin: 4px 2px;
}
h2 {
border: 4px solid white;
color: white;
background-color: #808080;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
margin: 4px 2px;
}
h3 {
border: 4px solid white;
color: white;
background-color: #808080;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
}
</style>
</head>
<body>
<div class="container">
<div class="owner">
<img src="./images/hi.png">
<h2>Rico</h2>
<h3>im rico, some random dude</h3>
<h2>Likes:</h2>
<h3>Dave and Bambi</h3>
<h3>BFDI</h3>
</div>
</div>
</body>
</html>