-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
165 lines (162 loc) · 5.66 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!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" />
<link rel="stylesheet" href="css/style.css" />
<!-- <link rel="icon" type="image/png" href="" /> -->
<title>TImeNow Landing Page</title>
</head>
<body>
<header class="sticky">
<div class="container">
<img src="/Assets/Logo.svg" />
<div class="dropdown">
<nav>
<ul>
<li>
<a href="#">Features</a>
</li>
<li>
<a href="index2.html">Pricing</a>
</li>
</ul>
</nav>
<a href="index2.html" class="cta-btn">Start Scheduling</a>
</div>
<button id="menu">
<img
id="hamburger"
src="/Assets/Hamburger Menu.svg"
alt="menu open"
/>
<img id="close" src="/Assets/close.png" alt="menu close" />
</button>
</div>
</header>
<main>
<section class="hero container">
<div class="hero-section-1">
<h1>Post when your audience is most active</h1>
<p>
With TimeNow, automatically scheudle your posts on Twitter,
LinkedIn, and Instagram to post when your followers are most active.
</p>
<div class="hero-schedule-demo">
<a href="index2.html" class="cta-btn">Start Scheduling</a>
<a class="view-demo"> View Demo</a>
</div>
<div class="hero-learn-more">
<img src="/Assets/Shield.svg" />
<p>
TimeNow does not sell your data.
<a href="index2.html">Learn more</a>
</p>
</div>
</div>
<div class="hero-section-2">
<img src="/Assets/Mockup.png" />
</div>
</section>
<section>
<div class="user-section-1 container">
<div class="user-section-list">
<h1>TimeNow is used by the most influential people.</h1>
<ul>
<li><img src="/Assets/UA1.png " alt="Avatar image" /></li>
<li><img src="/Assets/UA2.png " alt="Avatar image" /></li>
<li><img src="/Assets/UA3.png " alt="Avatar image" /></li>
<li><img src="/Assets/UA4.png " alt="Avatar image" /></li>
<li><img src="/Assets/UA5.png " alt="Avatar image" /></li>
<li><img src="/Assets/UA6.png " alt="Avatar image" /></li>
<li><img src="/Assets/UA7.png " alt="Avatar image" /></li>
<li><img src="/Assets/UA8.png " alt="Avatar image" /></li>
</ul>
</div>
<div class="user-section-info">
<p>
The most influential people on Facebook, Twitter, and Instagram
are using TweetNow to schedule posts when their followers are most
active.
</p>
<p>
They generally receive 23% more engagement than people who do not.
</p>
</div>
</div>
</section>
<section>
<div class="section-info-final">
<div class="section-dashboard container">
<h3>Unified Dashboard</h3>
<h1>Customizable dashboard for all platforms.</h1>
<p>
Use Twitter and Instagram but not LinkedIn? You can customize your
dashboard to your liking. You can even schedule the same post to
individual platforms instead of all platforms.
</p>
<a class="cta-btn" href="index2.html">Start Scheduling</a>
</div>
<div class="section-analytics container">
<h3>Enhanced Analytics</h3>
<h1>Real-time data that tells you everything.</h1>
<p>
Get detailed reports of what's working and what isn't. Engagement
rates, impressions, views, and much more data is available to you
through our in-depth dashboard tool.
</p>
<div class="vld">
<a href="index2.html">View Live Demo</a>
<span>➜</span>
</div>
</div>
</div>
</section>
<footer class="container">
<img src="/Assets/Logo.svg" />
<div class="footer-container">
<div class="footer">
<div class="footer-product">
<h2>Product</h2>
<ul>
<li><a href="#">Homepage</a></li>
<li><a href="index2.html">Pricing</a></li>
<li><a href="#">Features</a></li>
</ul>
</div>
<div class="footer-help">
<h2>Company</h2>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Customers</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
<div class="footer-company">
<h2>Help</h2>
<ul>
<li><a href="#">Live Chat</a></li>
<li><a href="#">Send Email</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
</div>
<div class="tweetnow">
<h2>Try TweetNow</h2>
<form action="index2.html">
<input
type="email"
id="email"
name="email"
placeholder="Email Address"
/>
<a class="cta-btn">Start Scheduling</a>
</form>
</div>
</div>
</footer>
</main>
<script src="js/main.js"></script>
</body>
</html>