-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
139 lines (131 loc) · 5.49 KB
/
about.html
File metadata and controls
139 lines (131 loc) · 5.49 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
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gaming Platform</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="wrapper">
<header class="container">
<span class="logo">Logo</span>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li class="active"><a href="/about.html">About us</a></li>
<li><a href="/portfolio.html">Portfolio</a></li>
<li><a href="/news.html">News</a></li>
<li class="btn"><a href="/contacts.html">Contact us</a></li>
</ul>
</nav>
</header>
<div class="hero-about container">
<div class="hero-href"><h4>Home ></h4><h5>About us</h5></div>
<div class="info">
<h1>Lorem Ipsum is simply dummy text of the printing and.</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
<button class="btn">Get in touch</button>
</div>
<img src="img/about-banner.png" alt="">
</div>
<div class="container work">
<h2>Why work with us</h2>
<div class="blocks">
<div class="block">
<span class="badge purple">Lorem ipsum</span>
<h3>Lorem Ipsum</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,</p>
</div>
<div class="block">
<span class="badge brown">Lorem ipsum</span>
<h3>Lorem Ipsum</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,</p>
</div>
<div class="block">
<span class="badge green">Lorem ipsum</span>
<h3>Lorem Ipsum</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,</p>
</div>
</div>
</div>
</div>
<div class="about-block">
<div class="container info-block">
<img src="img/about-image.png" alt="">
<div class="txtblock">
<h2>Lorem ipsum</h2>
<h1>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries,</p>
</div>
</div>
</div>
<div class="wrapper">
<div class="team container">
<h2>Our Team</h2>
<div class="blocks">
<div class="block">
<img src="img/worker1.png" alt="">
<h2>John peter</h2>
<p>COO</p>
</div>
<div class="block">
<img src="img/worker2.png" alt="">
<h2>John peter</h2>
<p>COO</p>
</div>
<div class="block">
<img src="img/worker3.png" alt="">
<h2>John peter</h2>
<p>COO</p>
</div>
<div class="block">
<img src="img/worker4.png" alt="">
<h2>John peter</h2>
<p>COO</p>
</div>
</div>
</div>
<div class="container email">
<h3>Lorem Ipsum</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<div class="block">
<div>
<h4>Stay in the loop</h4>
<p>Subscribe to receive the latest news and updates about TDA.
We promise not to spam you! </p>
</div>
<div>
<input type="email" id="emailField" placeholder="Enter email address">
<button onclick="checkEmail()">Continue</button>
</div>
</div>
</div>
</div>
<footer>
<div class="blocks container">
<div>
<span class="logo">logo</span>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<p>@Logo</p>
</div>
<div>
<h4>About us</h4>
<ul>
<li>Zeux</li>
<li>Portfolio</li>
<li>Careers</li>
<li>Contact us</li>
</ul>
</div>
<div>
<h4>Contact us</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<p>+908 89097 890</p>
</div>
</div>
<hr>
<p>Copyright ® 2021 Lorem All rights Rcerved</p>
</footer>
</body>
</html>