-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (65 loc) · 2.56 KB
/
index.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
<!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">
<meta name="theme-color" content="#4500CA">
<title>My Website</title>
<link rel="stylesheet" href="./css/app.css">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<nav class="navbar" id="navbar">
<ul class="menu-content container">
<li class="app-title">App Title</li>
<li>
<ul class="menu-items">
<li><a href="#">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./contact.html">Contact Us</a></li>
<li><a href="./login.html">Login</a></li>
</ul>
</li>
</ul>
</nav>
<header class="page-header">
<div class="container ph">
<div class="details">
<div class="title">Title</div>
<br>
<div class="description">
Our work connects communities, builds a better future and transforms and maintains the places where
we
live, work and relax.
</div>
<br>
<a href="#" class="button">GET IN TOUCH</a>
</div>
</div>
</header>
<main>
<section class="container ">
<div class="wedo">
<div>
<h1>Places For Everyone</h1>
<p>We’re city shapers, community creators and career makers.</p>
<p>From Kashmir to Kanyakumari, our projects are as individual as the cities and
regions in which we operate.</p>
<p>Urban and lifestyle precincts, living options for different stages of life, social infrastructure –
we’re delivering some of the world’s most sustainable real estate.</p>
</div>
<div class="image">
<img src="https://media.istockphoto.com/photos/construction-in-the-city-picture-id516366806?k=6&m=516366806&s=170667a&w=0&h=PGxU6sMHEgYGOYiwuXnBjqeLro-_peVOUfyS1TgnHYs=" alt="">
</div>
</div>
</section>
<!-- Projects -->
<section class="container projects">
<h1>Projects</h1>
</section>
</main>
<script src="./js/app.js"></script>
</body>
</html>