-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
134 lines (116 loc) · 4.26 KB
/
contact.html
File metadata and controls
134 lines (116 loc) · 4.26 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!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">
<title>Script This - Contact</title>
<meta name="description" content="Contact Script This for inquiries, support, or feedback regarding your ultimate tool for JSON data visualization.">
<link rel="stylesheet" href="styles.css">
<style>
body, html {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
}
.content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px;
background-color: #1e1e1e;
}
.contact-container {
max-width: 800px;
margin: 20px auto;
padding: 30px;
background-color: #2d2d2d;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
text-align: left;
}
h2 {
color: #8a2be2;
margin-bottom: 10px;
border-bottom: 2px solid #6a0dad;
padding-bottom: 5px;
}
p {
line-height: 1.6;
margin-bottom: 15px;
color: #e0e0e0;
}
.contact-details a {
color: #1291a7;
text-decoration: none;
transition: background-color 0.3s, color 0.3s;
}
.contact-details a:hover {
color: #fff;
background-color: #6a0dad;
}
.contact-links a {
color: #1291a7;
text-decoration: none;
padding: 8px 16px;
border: 1px solid #6a0dad;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}
.contact-links a:hover {
background-color: #6a0dad;
color: #fff;
}
@media (max-width: 768px) {
.contact-container {
padding: 20px;
margin: 20px;
}
}
</style>
</head>
<body>
<header>
<div id="logo">
<img src="ScriptThisLogoMain.png" alt="Script This Logo">
</div>
<p>Your Ultimate Tool for Lua Script Management</p>
<nav>
<ul class="navbar">
<li><a href="Home.html">Home</a></li>
<li><a href="json-viewer.html">JSON Viewer</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="documentation.html">Documentation</a></li>
</ul>
</nav>
</header>
<div class="content">
<main class="contact-container">
<h2>Contact Us</h2>
<p>If you have any questions, feedback, or need support, feel free to reach out through the methods below. We are here to help and will respond as soon as possible.</p>
<section class="contact-details">
<h3>Contact Information</h3>
<ul>
<li>Discord Profile: <a href="https://discord.com/users/1146641611292426261" target="_blank">keef_it_up</a></li>
<li>ALT: <a href="https://discord.com/users/466131509636497410" target="_blank">Don Reagan</a></li>
<li>GitHub: <a href="https://github.com/Ronnie-Reagan/" target="_blank">github.com/Ronnie-Reagan</a></li>
</ul>
</section>
<section class="contact-links">
<h3>Connect with Us</h3>
<a href="https://github.com/Ronnie-Reagan/" target="_blank">GitHub</a>
<a href="https://discord.gg/UKzgYPegZY" target="_blank">Discord Server</a>
<a href="https://discord.com/users/1146641611292426261" target="_blank">Discord Profile</a>
</section>
</main>
</div>
<footer>
<p>© 2024 Script This. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>