-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (154 loc) · 5.58 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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!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>Vijay Enterprises</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@200&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/a076d05399.js"
crossorigin="anonymous"
></script>
<script
src="https://kit.fontawesome.com/2a456f3774.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="navbarCustom responsive" id="navBar">
<button onclick="openNav()">
<i class="fa fa-solid fa-bars"></i>
</button>
<a href="#">
<img src="./images/logo.png" alt="" />
</a>
<a href="#home" onclick="closeNav()">Home</a>
<a href="#services" onclick="closeNav()">Our Services</a>
<a href="#aboutUs" onclick="closeNav()">About Us</a>
<a href="#projects" onclick="closeNav()">Projects</a>
<a href="#contactus" onclick="closeNav()">Contact Us</a>
</div>
<div class="c2" id="home">
<div class="container">
<h2>BUILDING TOGETHER</h2>
<h1>VIJAY ENTERPRISES</h1>
</div>
</div>
<div class="c3" id="services">
<h1 class="heading">OUR SERVICES</h1>
<hr />
<div class="serviceBlock">
<div class="container">
<i class="fa fa-solid fa-house"></i>
<h2>Building Homes</h2>
<p>
Vijay Enterprises acknowledges the design process and has the
creativeness to combine it with construction planning. We make your
dreams a reality, whether it's a house, an institution or public
facilities.
</p>
</div>
<div class="container">
<i class="fa-solid fa-hammer"></i>
<h2>House Renovation</h2>
<p>
Allow us to renovate your home after years of wear and tear have
taken their toll and transform it into a place you can be proud of.
</p>
</div>
<div class="container">
<i class="fa fa-solid fa-hand-holding-dollar"></i>
<h2>Building Material and Land Leveling</h2>
<p>
Vijay Enterprises provides building materials including bricks,
sand, crusher, cement, stone, TMT steel bars along with facilities
such as land leveling at reasonable prices.
</p>
</div>
</div>
</div>
<div class="c3" id="projects">
<h1 class="heading">OUR PROJECTS</h1>
<hr />
<div class="cards">
<img class="left" src="images/1.png" />
<img src="images/2.png" />
<img src="images/3.png" />
<img class="left" src="images/4.png" />
<img src="images/5.png" />
<img src="images/6.png" />
</div>
</div>
<!-- <div class="about">
<div class="Aim">
<h1>ABOUT US</h1>
<br>
<h3>Aim of our Enterprise </h3>
</div>
<div class="des">VIJAY ENTERPRISES is a prestigious residential construction company that specialises in high-end technical construction and beautifully designed luxury residences with 10 years of professional experience. From historic preservation to cutting-edge contemporary designs, our award-winning staff makes even the most difficult projects look simple. </div>
</div> -->
<div style="text-align: center; padding-top: 70px" class="about-head">
<h1 class="heading">ABOUT US</h1>
<hr />
</div>
<div class="about" id="aboutUs">
<div class="Aim">
<img src="./images/aboutus.png" alt="about-png" />
</div>
<div class="des">
VIJAY ENTERPRISES is a prestigious residential construction company that
specialises in high-end technical construction and beautifully designed
luxury residences with 10 years of professional experience. From
historic preservation to cutting-edge contemporary designs, our
award-winning staff makes even the most difficult projects look simple.
</div>
</div>
<div class="c5" id="contactus">
<h1 class="heading" style="margin-bottom: -2vh">Contact Us</h1>
<hr />
<img src="./images/logo.png" alt="" />
<a href="tel:+919418186342">Phone: +91 9418186342</a>
<a href="mailto: [email protected]"
>Email: [email protected]</a
>
<div class="address">
Address: Palampur, Himachal Pradesh, India 176061
</div>
</div>
<div class="footer">
Copyright © 2022 Vijay Enterprises. All rights reserved.
</div>
</body>
<script>
function openNav() {
var x = document.getElementById("navBar");
console.log(navBar);
if (x.className === "navbarCustom") {
x.className += " responsive";
} else {
x.className = "navbarCustom";
}
}
function closeNav() {
var x = document.getElementById("navBar");
console.log(navBar);
if (x.className === "navbarCustom") {
x.className += " responsive";
} else {
x.className = "navbarCustom";
}
}
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</html>