-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
75 lines (75 loc) · 2.48 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
<!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 Project</title>
<!-- font awesome -->
<link rel="stylesheet" href="./fontawesome-free-6.3.0-web/css/all.css" />
<!-- main Style -->
<link rel="stylesheet" href="./css/index.css" />
<!--main javascript-->
<script src="./js/main.js" defer></script>
</head>
<body>
<!--nav button-->
<span class="nav-btn" id="nav-btn">
<i class="fa fa-bars"></i>
</span>
<!--End of nav button-->
<!--navbar-->
<nav class="navbar" id="navbar">
<div class="navbar-header">
<span class="nav-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>
<!--End of navbar-->
<!--Header-->
<header class="header">
<div class="banner">
<h3 class="banner-subtitle">over one hundred flavors of tea</h3>
<h1 class="banner-title">specially crafted tea</h1>
<a class="banner-btn" href="skills.html">explore</a>
</div>
</header>
<!-- end of Header-->
<!-- Content divider -->
<div class="content-divider"></div>
<!-- End of Content divider -->
<!-- About -->
<section class="about">
<div class="section-center clearfix">
<article class="about-img">
<div class="about-picture-container">
<img src="./images/about-bcg.jpeg" class="about-picture" />
</div>
</article>
<article class="about-info">
<div>
<h3 class="section-subtitle">about our</h3>
<h2 class="section-title">tea station</h2>
</div>
<p class="about-text">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Rerum,
sapiente.
</p>
<p class="about-text">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Rerum,
sapiente.
</p>
<a href="about.html" class="main-btn">learn more</a>
</article>
</div>
</section>
<!-- End of About -->
</body>
</html>