-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
108 lines (94 loc) · 3.21 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mono is More - Contact</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1 class="source-code-pro-regular"><b>Mono is More</b></h1>
<p class="source-code-pro-light">Contact</p>
</header>
<main>
<section id="contact-info-section">
<h2 class="source-code-pro-bold artistic-text">Get in Touch!</h2>
<p class="source-code-pro-light big-text">If you have any questions, thoughts, or simply want to say hello, feel free to drop a message at:</p>
<p class="source-code-pro-medium email-text"><a href="mailto:[email protected]">[email protected]</a></p>
<br>
<br>
<p><a href="javascript:history.back()">Previous Page</a></p>
</section>
</main>
<footer>
<p class="source-code-pro-light">© 2024-2025 Long Winter Project</p>
<nav>
<ul class="footer-links">
<li><a href="index.html" class="source-code-pro-light">Home</a></li>
<li><a href="contact.html" class="source-code-pro-light">Contact</a></li>
<li><a href="photowards.html" class="source-code-pro-light photowards-link">Photowards</a></li>
</ul>
</nav>
</footer>
<style>
/* Contact Info Section Styling */
#contact-info-section {
max-width: 800px;
margin: 0 auto;
padding: 100px 20px; /* Centering and spacing */
text-align: center;
}
/* Artistic big font styling */
.artistic-text {
font-size: 2.5rem;
color: #333;
margin-bottom: 40px;
}
.big-text {
font-size: 1.5rem;
margin-bottom: 20px;
}
/* Email Styling */
.email-text a {
font-size: 2rem;
color: #333;
text-decoration: none;
transition: color 0.3s ease;
}
.email-text a:hover {
color: #555;
}
/* Footer styling remains the same */
footer {
padding: 20px;
font-size: 0.9rem;
background-color: #3e3939;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
color: #fff;
margin-top: 40px;
}
.footer-links {
list-style: none;
padding: 0;
}
.footer-links li {
display: inline-block;
margin-right: 10px;
}
.footer-links a {
color: #e6e6e6;
text-decoration: none;
transition: color 0.3s ease-in-out;
}
.footer-links a:hover {
color: #848484;
}
</style>
</body>
</html>