-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
112 lines (105 loc) · 3.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>about us</title>
<!-- font awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- styles -->
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<!-- navbar -->
<!-- nav button -->
<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="nav-close" id="nav-close">
<i class="fas fa-times"></i>
</span>
</div>
<h4>site contents</h4>
<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>
<!-- <img src="./images/tea1.jpg" alt="" class="nav-img" /> -->
</nav>
<!-- end of navbar -->
<!-- header -->
<header class="header">
<div class="banner">
<!-- <h1>coffe station</h1> -->
<h2>its taste wakes you up</h2>
<h1>Tea station <br />over <span>21</span> countries</h1>
<a href="skills.html" class="btn banner-btn">explore</a>
</div>
</header>
<!-- content divider -->
<div class="content-divider"></div>
<!-- about section-->
<section class="about-section">
<div class="section-center clearfix">
<!-- about img -->
<article class="about-img">
<div class="about-picture-container">
<img src="./images/tea1.jpg" alt="" class="about-picture" />
</div>
</article>
<!-- about info -->
<article class="about-info">
<div class="section-title">
<h3>about us</h3>
</div>
<p class="about-text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Laborum ab
porro, aliquam blanditiis eligendi alias.
</p>
<p class="about-text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Laborum ab
porro, aliquam blanditiis eligendi alias.
</p>
<a href="about.html" class="about-link"> more...</a>
</article>
</div>
</section>
<!-- end of about -->
<!-- footer -->
<footer class="footer">
<div class="section-center">
<div class="social-icons">
<!-- social icon -->
<a href="#" class="social-icon">
<i class="fab fa-facebook"></i>
</a>
<!-- social icon -->
<a href="#" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
<!-- social icon -->
<a href="#" class="social-icon">
<i class="fab fa-instagram"></i>
</a>
</div>
<h4 class="footer-text">
© <span class="company">Tea station</span>all right
reserved<span id="date"></span>
</h4>
</div>
</footer>
<!-- end of footer -->
<!-- script -->
<script src="./app.js"></script>
</body>
</html>