-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
53 lines (48 loc) · 1.27 KB
/
Copy pathcontact.html
File metadata and controls
53 lines (48 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>More Minecraft: Contact</title>
</head>
<style>
body {
background-color: rgb(0, 255, 9);
}
#mainTitle {
text-align: center;
font-family: sans-serif;
border-style: solid;
border-radius: 50px;
border-color: rgb(12, 82, 0);
font-size: 65px;
color: rgb(12, 82, 0);
}
#bigPg {
text-align: center;
font-family: sans-serif;
font-size: 32px;
color: rgb(12, 82, 0);
}
#smallPg {
text-align: center;
font-family: sans-serif;
font-size: 25px;
color: rgb(12, 82, 0);
}
#about {
background-color: rgb(2, 212, 6);
border-radius: 25px;
}
</style>
<body>
<h1 id="mainTitle">Contact</h1>
<div id="about">
<p id="bigPg">If you have something to say, just email me!</p>
</div>
<p id="bigPg"><b><u>Email</u></b></p>
<p id="smallPg"><mark>grantkuk13@gmail.com</mark></p>
<p id="bigPg"><b><u>Pages</u></b></p>
<p id="smallPg"><a href="changelog.html">Changelog & Downloads</a></p>
<p id="smallPg"><a href="feedback.html">Feedback</a></p>
<p id="smallPg"><a href="home.html">Home</a></p>
</body>
</html>