-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 2.26 KB
/
index.html
File metadata and controls
62 lines (58 loc) · 2.26 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
<!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>To The New</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header class="container">
<h1 class="logo">To The New</h1>
<nav class="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>
<section>
<div class="bg-img"></div>
<div class="content">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Possimus delectus
obcaecati officiis, voluptatem aliquid qui praesentium tempora magnam ipsam
cumque placeat inventore consequuntur nihil, blanditiis ad labore, provident
sit velit?</p>
</div>
</section>
<section>
<div class="gallery-container">
<h2>Latest news and Gallery</h2>
<div class="box-container">
<img src="http://medianama.com/wp-content/uploads/2020/10/ToXTheXNew.jpg.jpg" alt="">
<h3>Greate place to work</h3>
</div>
<div class="box-container">
<img src="https://media.glassdoor.com/lst/2e/55/c3/4b/image-office.jpg" alt="">
<h3>Office</h3>
</div>
<div class="box-container">
<img src="https://aniportalimages.s3.amazonaws.com/media/details/unnamed_1_N43xyin_e1Yz3bE.jpg" alt="">
<h3>Interier view</h3>
</div>
<div class="box-container">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ1nXzB4qDr1F18NNcFWX7lcvkSntigkRTTPlZZPE57VT-bbcOsFsH43fYM4kdL1mcMx3Y&usqp=CAU" alt="">
<h3>India best companies</h3>
</div>
</div>
</section>
<footer>
<b>Copyright © 2021 ● All Right Reserved ● To The New</b>
<b id="name">Web Layout by Amit Kumar</b>
</footer>
</body>
</html>