-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·149 lines (139 loc) · 6.33 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Fonts -->
<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=Hanken+Grotesk:wght@500;700;800&family=Kumbh+Sans:wght@400;700&family=Montserrat:wght@500;700&family=Open+Sans:wght@400;700&family=Outfit:wght@400;700&family=Overpass:wght@400;700&family=PT+Sans:wght@700&family=Space+Grotesk:wght@500;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<title>Frontend Mentor | Officelite coming soon site</title>
<script src="js/script.js" defer></script>
</head>
<body class="body body-home-page">
<div class="max-width-wrapper max-width-wrapper-home-page">
<!-- Header Section -->
<header>
<div class="header-wrapper-main">
<div class="header-container-circle">
<figure id="header-circle">
<img src="images/home/bg-pattern-header.svg" alt="decorative-circles">
</figure>
</div>
<div class="header-container-logo">
<figure id="header-logo">
<img class="logo-art" src="images/shared/logo.svg" alt="logo">
</figure>
</div>
<div class="header-wrapper-charts-content">
<div class="header-container-charts order-of-charts">
<figure id="header-charts">
<img class="charts" src="images/home/illustration-charts.svg" alt="charts">
</figure>
</div>
<div class="header-container-content order-of-content">
<h1 class="header-h1">A simple solution to complex tasks <span>is coming soon</span></h1>
<p class="header-p">Say goodbye to inefficient juggling of multiple apps, teams, and projects. Officelite is the new
collaboration platform built with an intuitive interface to improve productivity.
</p>
<a class="link-to-signup-page-header" href="sign-up.html">Get Started</a>
</div>
</div>
</div>
</header>
<!-- Card Section -->
<main class="main-homepage">
<section class="card-wrapper">
<h2 class="visually-hidden">Package Offerings</h2>
<div class="card-container">
<article class="card card-basic">
<div class="card-part-1">
<h2>Basic</h2>
<p class="cost">Free</p>
<p class="num-users">Up to 5 users for free</p>
</div>
<div class="card-part-2">
<p class="addl-info addl-info-first">Basic document collaboration</p>
<p class="addl-info">2 GB storage</p>
<p class="addl-info">Great security and support</p>
</div>
<div class="try-button-container card-part-3">
<a id="basic-button" class="try-button basic-button" href="sign-up.html">Try for Free</a>
</div>
</article>
<article class="card card-pro">
<figure>
<img src="images/home/bg-pattern-pricing.svg" alt="decorative-circle-pattern">
</figure>
<div class="card-part-1 card-part-1-pro">
<h2>Pro</h2>
<p class="cost">$9.99</p>
<p class="num-users">Per user, billed monthly</p>
</div>
<div class="card-part-2">
<p class="addl-info addl-info-first addl-info-pro">All essential integrations</p>
<p class="addl-info addl-info-pro">50 GB storage</p>
<p class="addl-info addl-info-pro">More control and insights</p>
</div>
<div class="try-button-container card-part-3">
<a id="pro-button" class="try-button pro-button" href="sign-up.html">Try for Free</a>
</div>
</article>
<article class="card card-ultimate">
<div class="card-part-1">
<h2>Ultimate</h2>
<p class="cost">$19.99</p>
<p class="num-users">Per user, billed monthly</p>
</div>
<div class="card-part-2">
<p class="addl-info addl-info-first">Robust work management</p>
<p class="addl-info">100 GB storage</p>
<p class="addl-info">VIP support</p>
</div>
<div class="try-button-container card-part-3">
<a id="ultimate-button" class="try-button ultimate-button" href="sign-up.html">Try for Free</a>
</div>
</article>
</div>
</section>
</main>
<!-- Countdown Section -->
<footer class="countdown-section">
<div class="countdown-image-wrapper">
<figure class="countdown-circle-pattern-container">
<img src="images/home/bg-pattern-footer.svg" alt="decorative-circles">
</figure>
</div>
<div class="countdown-content-container">
<div class="countdown-container">
<h2>COMING <span class="span-countdown-date"></span></h2>
<div class="time-container">
<div>
<p class="time time-days"></p>
<p class="time-label">days</p>
</div>
<div>
<p class="time time-hours"></p>
<p class="time-label">hours</p>
</div>
<div>
<p class="time time-minutes"></p>
<p class="time-label">min</p>
</div>
<div>
<p class="time time-seconds"></p>
<p class="time-label">sec</p>
</div>
</div>
</div>
<div class="countdown-button-container">
<a class="link-to-signup-page-footer" href="sign-up.html">Get Started</a>
</div>
</div>
</footer>
</div>
</body>
</html>