-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
106 lines (106 loc) · 3.37 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
<!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" />
<title>Tea Station | About</title>
<link rel="stylesheet" href="./assets/styles/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<script src="./assets/scripts/app.js" defer></script>
</head>
<body>
<!-- NAVBAR -->
<span class="nav-btn" id="nav-btn">
<i class="fas fa-bars"></i>
</span>
<nav class="navbar" id="navbar">
<div class="navbar-header">
<span class="navbar-close" id="nav-close">
<i class="fas fa-times"></i>
</span>
</div>
<ul class="nav-items">
<li><a href="index.html" class="nav-link">home</a></li>
<li><a href="skills.html" class="nav-link">skills</a></li>
<li><a href="about.html" class="nav-link">about</a></li>
<li><a href="products.html" class="nav-link">products</a></li>
</ul>
</nav>
<!-- NAVBAR -->
<!-- HEADER section-->
<header class="header">
<div class="section-center">
<div class="hero-content">
<h2>over one hundred flavors of</h2>
<h1>
spacially <br />
crafted tea
</h1>
<a href="#" class="btn hero-btn">explore</a>
</div>
</div>
</header>
<!-- HEADER section-->
<!-- LINEDIVIDER -->
<div class="linebreak"></div>
<!-- LINEDIVIDER -->
<!-- ABOUT section -->
<section class="about">
<div class="section-center clearfix">
<article class="section-img">
<div class="img-block">
<img
src="./assets/image/about-bcg.jpeg"
alt="tea kettle"
class="about-img"
/>
</div>
</article>
<div class="about-content">
<div class="section-title">
<h2>about our</h2>
<h1>tea station</h1>
</div>
<p class="about-p">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Reiciendis
debitis autem dolorum molestiae non alias blanditiis ipsam deserunt
ea. Dicta!
</p>
<br />
<p class="about-p">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo, autem.
</p>
<a href="#" class="about-btn btn">learn more</a>
</div>
</div>
</section>
<!-- ABOUT section -->
<!-- FOOTER section -->
<footer class="footer">
<div class="section-center">
<div class="footer-icon">
<a href="#" class="social-icon">
<i class="fab fa-facebook"></i>
</a>
<a href="#" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="social-icon">
<i class="fab fa-instagram"></i>
</a>
</div>
<h4 class="footer-text">
©<span id="date"></span
><span class="span-text"> tea station</span> all rights reserved
</h4>
</div>
</footer>
</body>
</html>