-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestpage2.html
More file actions
187 lines (165 loc) · 5.91 KB
/
Copy pathtestpage2.html
File metadata and controls
187 lines (165 loc) · 5.91 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkyLink Systems | Enterprise Solutions</title>
<style>
:root {
--primary-blue: #0066ff;
--dark-blue: #0044cc;
--text-dark: #111827;
--text-gray: #4b5563;
--white: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
background-color: var(--white);
color: var(--text-dark);
line-height: 1.5;
}
/* Navigation placeholder */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 5%;
position: absolute;
width: 100%;
z-index: 10;
}
.logo {
font-size: 1.5rem;
font-weight: 800;
color: var(--primary-blue);
letter-spacing: -1px;
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}
.nav-links li a {
text-decoration: none;
color: var(--text-gray);
font-weight: 500;
font-size: 0.9rem;
transition: color 0.2s;
}
.nav-links li a:hover {
color: var(--primary-blue);
}
/* Hero Section */
.hero {
position: relative;
height: 100vh;
display: flex;
align-items: center;
padding: 0 5%;
overflow: hidden;
background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%),
url('assets/hero-bg.png');
background-size: cover;
background-position: center;
}
.hero-content {
max-width: 650px;
z-index: 2;
}
.badge {
display: inline-block;
background: rgba(0, 102, 255, 0.1);
color: var(--primary-blue);
padding: 0.5rem 1rem;
border-radius: 2rem;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 1.5rem;
letter-spacing: 1px;
}
h1 {
font-size: 4rem;
line-height: 1.1;
font-weight: 800;
margin-bottom: 1.5rem;
color: var(--text-dark);
}
h1 span {
color: var(--primary-blue);
}
.hero-text {
font-size: 1.25rem;
color: var(--text-gray);
margin-bottom: 2.5rem;
max-width: 550px;
}
.cta-button {
display: inline-block;
background-color: var(--primary-blue);
color: var(--white);
padding: 1.2rem 2.5rem;
border-radius: 0.75rem;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 10px 15px -3px rgba(0, 102, 255, 0.3);
}
.cta-button:hover {
background-color: var(--dark-blue);
transform: translateY(-3px);
box-shadow: 0 20px 25px -5px rgba(0, 102, 255, 0.4);
}
/* Decorative Elements */
.hero-shapes {
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
pointer-events: none;
}
@media (max-width: 768px) {
h1 { font-size: 3rem; }
.hero { text-align: center; justify-content: center; }
.hero-text { margin-left: auto; margin-right: auto; }
.nav-links { display: none; }
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="logo">SKYLINK.</div>
<ul class="nav-links">
<li><a href="#">Solutions</a></li>
<li><a href="#">Enterprise</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Pricing</a></li>
</ul>
</nav>
<section class="hero">
<div class="hero-content">
<span class="badge">Next-Gen Architecture</span>
<h1>Elevate Your <span>Enterprise</span> Communication.</h1>
<p class="hero-text">
Seamless integration, infinite possibilities. Experience the future of workflow optimization with SkyLink's proprietary architecture designed for global scale.
</p>
<a href="mailto:sales@skylink-systems.io?subject=Enterprise%20Inquiry%20-%20SkyLink%20Solutions&body=Hello%20SkyLink%20Sales%20Team%2C%0A%0AWe%20are%20interested%20in%20learning%20more%20about%20your%20enterprise%20communication%20solutions.%20Please%20provide%20us%20with%20more%20information%20regarding%20your%20current%20offerings.%0A%0ABest%20regards%2C%0A[Your%20Name]" class="cta-button">
Email Sales
</a>
<div style="margin-top: 3rem; background: rgba(255,255,255,0.8); padding: 1.5rem; border-radius: 12px; font-size: 0.9rem; max-width: 400px; box-shadow: 0 4px 6px rgba(0,0,0,0.05);">
<h3 style="margin-bottom: 1rem; color: var(--dark-blue); font-size: 1.1rem;">Contact Info (Testing)</h3>
<p style="margin-bottom: 0.8rem; color: var(--text-gray);">For general inquiries, reach out to plain text: support@skylink-systems.io</p>
<p style="color: var(--text-gray);">Partnerships: <strong style="color: #e03616;">partners@skylink-systems.io</strong></p>
</div>
</div>
</section>
</body>
</html>