-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
129 lines (118 loc) · 4.2 KB
/
Copy pathabout.html
File metadata and controls
129 lines (118 loc) · 4.2 KB
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
<!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="css/brands.min.css">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/main.css">
<title>Tee Station </title>
</head>
<body>
<!--Navbar button-->
<span class="nav-btn" id="nav-btn">
<i class="fas fa-bars"></i>
</span>
<!--end of Navbar button-->
<!---nav bar -->
<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="skill.html" class="nav-link">skill</a></li>
<li><a href="products.html" class="nav-link">products</a></li>
<li><a href="about.html" class="nav-link">about</a></li>
</ul>
</nav>
<!--- end of nav bar -->
<!--Navbar -->
<!--header-->
<header class="header">
<div class="banner">
<h3 class="banner-subtittle">Lorem ipsum dolor sit amet consectetur adipisicing.</h3>
<h1 class="banner-tittle">Lorem ipsum dolor sit.</h1>
<a href="http://" class="banner-btn">Explore</a>
</div>
</header>
<!-- end header-->
<!---content divider-->
<div class="content-devaider">
</div>
<!--- end content divider-->
<!-- for icon
<i class="fas fa-mug-hot"></i>
<i class="fas fa-glass-cheers"></i>
<i class="fas fa-bomb"></i>
<i class="fas fa-mortar-pestle"></i>
-->
<!---about -->
<section class="about">
<div class="section-center clearfix">
<!---first colume-->
<article class="about-img">
<div class="about-picture-container">
<img src="./img/tee-kattle.jpg" alt="Tee Making " srcset="" class="about-picture">
</div>
</article>
<!--- end of first colume-->
<!---second colume-->
<article class="about-info">
<div>
<h3 class="section-subtittle">
about our
</h3>
<h1 class="section-tittle">
tee Station
</h1>
</div>
<p class="about-text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Corporis, soluta.
</p>
<p class="about-text">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Debitis, laboriosam.
</p>
<a href="index.html" class="main-btn">Learn More</a>
</article>
<!--- end of second colume-->
</div>
</section>
<!--- end about -->
<!--footer-->
<section class="footer">
<div class="section-center">
<div class="social-icons">
<!---social icon-->
<a href="#" class="social-icon">
<i class="fab fa-facebook"></i>
</a>
<!---end of social icon-->
<!---social icon-->
<a href="#" class="social-icon">
<i class="fab fa-instagram"></i>
</a>
<!---end of social icon-->
<!---social icon-->
<a href="#" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
<!---end of social icon-->
<!---social icon-->
<a href="#" class="social-icon">
<i class="fab fa-linkedin"></i>
</a>
<!---end of social icon-->
</div>
<p class="footer-text">
© <span class="footer-main-text"> tee station</span>. all rights reserved
</p>
</div>
</section>
<!--- end footer-->
<script src="js/all.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>