-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
116 lines (101 loc) · 2.2 KB
/
contact.html
File metadata and controls
116 lines (101 loc) · 2.2 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
---
layout: default
title: Contact Us
---
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #2f2f2f;
color: #eee;
margin: 0;
padding: 0;
}
footer {
background: #1f1f1f;
padding: 1rem 2rem;
text-align: center;
}
header .header-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 2rem;
flex-wrap: wrap;
}
.logo {
height: 60px;
}
.banner {
font-family: 'Orbitron', sans-serif;
font-size: 1.8rem;
color: #ff4a4a;
}
main {
max-width: 700px;
margin: 4rem auto;
padding: 1rem;
text-align: center;
}
main h2 {
font-family: 'Orbitron', sans-serif;
color: #ff4a4a;
font-size: 2.5rem;
margin-bottom: 1.5rem;
}
.contact-message {
font-size: 1.2rem;
color: #ddd;
margin-bottom: 2rem;
}
.contact-email a {
font-size: 1.5rem;
color: #6dcff6;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
.contact-email a:hover {
color: #ffffff;
}
.call-to-action {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
margin-top: 3rem;
}
.call-to-action a {
background-color: #ff4a4a;
color: #fff;
padding: 0.8rem 1.5rem;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
font-size: 1.1rem;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.call-to-action a:hover {
background-color: #ff6f6f;
transform: translateY(-3px);
}
footer p {
margin: 0.5rem 0;
font-size: 0.9rem;
color: #bbb;
}
</style>
<main>
<h2>Let's Connect</h2>
<p class="contact-message">
Have a question, opportunity, or want to collaborate with us?<br>
Shoot us an email – we'd love to hear from you.
</p>
<div class="contact-email">
<a href="mailto:info@ataarobotics.ca">info@ataarobotics.ca</a>
</div>
<section class="call-to-action">
<a href="joinus.html">Join Us</a>
<a href="mailto:payment@ataarobotics.ca">Donate</a>
<a href="https://www.instagram.com/4421FORGE/" target="_blank" rel="noopener noreferrer">Instagram</a>
</section>
</main>