-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
90 lines (76 loc) · 1.99 KB
/
contact.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<title>Contact Me - List of Bugs Changelog</title>
</head>
<body>
<style>
body {
background-color: black;
}
.arial {
font-family: Arial, Helvetica, sans-serif;
color: white;
}
.topic {
padding: 3px 8px 3px;
font-family: Arial, Helvetica, sans-serif;
bottom: -6.2px;
position: relative;
}
.update {
background-color: #242424;
border-radius: 5px;
outline-color: black;
outline-style: solid;
outline-width: 2px;
padding: 0.3px 1px 1px;
}
hr {
outline-width: 2px;
outline-color: black;
}
p {
font-weight: bold;
}
a {
font-weight: bolder;
color: #e84f02;
}
strong {
font-weight: bold;
}
li {
color: black;
}
.nav {
display: flex;
background-color: #333;
padding: 10px 20px;
position: sticky;
top: 0;
z-index: 1000;
}
.nav a {
color: white;
text-decoration: none;
padding: 10px 15px;
transition: background-color 0.3s;
}
.nav a:hover {
background-color: #575757;
}
</style>
<div class="nav">
<a class="arial" href="https://bugschangelog.vercel.app/">Home</a>
<a class="arial" href="changelog.html">Changelog</a>
<a class="arial" href="about.html">About</a>
<a class="arial" href="contact.html">Contact</a>
<a class="arial" href="credits.html">Acknowledgements</a>
<a class="arial" href="https://scratch.mit.edu/">Scratch Website</a>
</div>
<h1 class="arial">Contact Me</h2>
<h2 class="arial">Which social media pages do you have?</h2>
<p class="arial">I have <a href="https://scratch.mit.edu/users/Rosics/">Scratch</a> or <a href="https://github.com/rosics-code/ListofBugsChangelog/commits?author=rosics-code">GitHub</a>, you can always leave a message about the Changelog or even about what I do (e.g. my ARG projects if your contacting for scratch), and I will be happy to reply! And maybe add like a indicator like "Came from Changelog Website" or something, that would be a fun addition, can't wait to get in contact with you! ^^</p>
</html>
</body>