forked from zero-to-mastery/Keiko-Corp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
177 lines (162 loc) · 5.76 KB
/
about.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
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/global.css" />
<link rel="stylesheet" href="./assets/css/about.css" />
<link rel="stylesheet" href="./assets/css/nav-styles.css" />
<link rel="stylesheet" href="./assets/css/footer.css" />
<link rel="stylesheet" href="./assets/css/scroll-bar.css" />
<link rel="icon" href="./assets/images/keiko-icon.ico" />
<title>About</title>
</head>
<body class="main">
<!-- HEADER -->
<header class="no-user-select">
<!-- sticky header -->
<div class="container-nav sticky">
<nav class="navbar">
<div class="nav-button">
<span></span>
<span></span>
<span></span>
</div>
<ul class="menu">
<li>
<img src="./assets/images/keiko-logo.png" class="logo" alt="Keiko Corp" />
</li>
<li>
<a href="./index.html">
<button id="contact-btn">Home</button>
</a>
</li>
<li>
<a href="./index.html#features">
<button id="contact-btn">Features</button>
</a>
</li>
<li>
<a href="./index.html#testimonials">
<button id="contact-btn">Testimonials</button>
</a>
</li>
<li>
<a href="./meet-the-team.html">
<button id="contact-btn">Team</button>
</a>
</li>
<li>
<a href="./index.html#pricing">
<button id="contact-btn">Pricing</button>
</a>
</li>
<li>
<a href="./contact.html">
<button id="contact-btn">Contact</button>
</a>
</li>
<!-----------------Toggle Button for Dark Mode---------------- -->
<label class="toggle-bar" id="toggle-bar">
<input type="checkbox" id="toggle-checkbox" />
<span class="slider round" id="slider-round"></span>
</label>
<!-- --------------------------------------- -->
</ul>
</ul>
</nav>
</div>
</header>
<div class="container">
<main>
<about class="intro" id="intro-section">
<header>
<h2 id="intro-title">ABOUT US</h2>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Nulla illo
sequi ea beatae eaque sit. Animi porro magni, neque ratione incidunt
esse deserunt? Perspiciatis error minima, tenetur ad pariatur
dignissimos sequi iste molestiae maxime enim veritatis fugit
laboriosam itaque commodi, vitae officiis, soluta adipisci est
consequatur accusamus rerum cumque aut at excepturi?
</p>
<button href="" class="intro-btn" id="intro-btn">Know More</button>
</header>
<figure>
<img src="./assets/images/hero.svg" alt="" class="intro-image" />
</figure>
</about>
</main>
</div>
<!-- Footer -->
<footer>
<div class="footer-row pl-5 pr-5">
<section class="footer-column">
<h2>Group 1</h2>
<div class='sub-footer-link'>
<a href="#home">Home</a>
<a href="#feature">Features</a>
<a href="#pricing">Pricing</a>
<a href="contact Us">Contact Us</a>
</div>
</section>
<section class="footer-column">
<h2>Group 2</h2>
<div class='sub-footer-link'>
<a href="privacy">Privacy Policy</a>
<a href="terms">Terms</a>
<a href="FAQ">FAQ</a>
<a href="support">Support</a>
</div>
</section>
<section class="footer-column">
<h2>About Us</h2>
<div>
Keiko Corp. the greatest start up of all time Bruno the CEO of Keiko Corp has built the fastest growing
tech
start up in Silicon Valley.
</div>
</section>
<section class="footer-column">
<h2>Follow Us</h2>
<div class="sub-footer">
<div class='sub-footer-link socials'>
<a href="/" title="Twitter"><i class="fab fa-twitter"></i></a>
<a href="/" title="Facebook"><i class="fab fa-facebook-f"></i></a>
<a href="/" title="Instagram"><i class="fab fa-instagram"></i></a>
<a href="/" title="Youtube"><i class="fab fa-youtube"></i></a>
<a href="/" title="Google"><i class="fab fa-google"></i></a>
</div>
</div>
</section>
<!-- Scroller -->
<div class="scroll-to-top-wrapper scroll-to-top-wrapper--hide" id='scroll-to-top-wrapper'>
<a href="#top" class="scroll-to-top" aria-label="Scroll to Top"><i class="arrow-up"></i></a>
</div>
</div>
<section id='sub-footer'>
<p>©
<script>document.write(new Date().getFullYear())</script>
Keiko Corp . All Rights Reserved
</p>
</section>
</footer>
<script>
const introSection = document.querySelector('#intro-section');
const introTitle = introSection.querySelector('#intro-title');
const introBtn = introSection.querySelector('#intro-btn');
const introCopy = 'About Us';
const introCopyHover = 'About Us 🎉';
introSection.addEventListener('mouseover', (e) => {
if (e.target != introBtn) return;
introTitle.innerHTML = introCopyHover.toUpperCase();
});
introSection.addEventListener('mouseout', (e) => {
if (e.target != introBtn) return;
introTitle.innerHTML = introCopy.toUpperCase();
});
</script>
<script src="./assets/js/dark-mode.js"></script>
<script src="assets\js\set-mode.js"></script>
</body>
</html>