-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
246 lines (214 loc) · 12.5 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<title>Lew</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-warning">
<div class="container d-flex justify-content-between ">
<a class="navbar-brand" href="#">LEW</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item mx-2">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link active" aria-current="page" href="#team">Team</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="#donate">Donate Us</a>
</li>
<li class="nav-item mx-2">
<a class="nav-link" href="#contact">Contact</a>
</li>
<!-- <li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Contact
</a>
<ul class="dropdown-menu bg-dark " aria-labelledby="navbarDropdown">
<li><a class="dropdown-item text-warning" href="#">Donate Us</a></li>
<li><a class="dropdown-item text-warning" href="#">Another action</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item text-warning" href="#">Something else here</a></li>
</ul>
</li> -->
</ul>
</div>
</div>
</nav>
<!-- First Content -->
<section class="container-fluid bg-warning text-light py-md-5 py-sm-0 py-0">
<div
class="container d-md-flex py-md-0 py-5 align-items-start align-items-md-center justify-content-md-between">
<div class="">
<h2 class='text-dark text-uppercase'>Hey, </h2>
<h1 class='text-dark text-uppercase '>Wan't your Own Website</h1>
<h5 class='text-secondary text-uppercase mb-md-4 mb-sm-3 mb-2'>Reach out to me</h5>
<p class='text-secondary '>I'm a Fullstack Developer with amazing creativity on developing websites and
making it responsive and as well I got a Good Hands on Animations</p>
<a href="#contact" class='btn btn-light text-dark px-lg-5 px-sm-3 px-2 py-sm-2 py-1'>Meet up</a>
</div>
<div class="d-md-inline-block d-none">
<img class='w-100 img-fluid' src="imgForstart.png" alt="">
</div>
</div>
</section>
<!-- Cards for Subjectives -->
<section class="container-fluid bg-white ">
<div class="container d-md-flex align-items-center justify-content-evenly py-5">
<div class='w-75'>
<h1 class="mb-3 text-uppercase">We only focus on 2 Subjectives</h1>
<hr>
<!-- <h4 class="text-dark">Important Note:</h4> -->
<p class="text-secondary">We belive that to develop an Impressive Website you have to have a focus just
on these things which makes your website likely in Look</p>
</div>
<div class="row w-100 ms-lg-5 ms-md-3 ms-0 ">
<div class="col-6 g-md-4 g-2">
<div class="card text-white bg-dark text-light mb-3" style="max-width: 18rem;">
<div class="card-header text-uppercase">Attractive</div>
<div class="card-body">
<h5 class="card-title text-uppercase">Grab Attention</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk
of the card's content.</p>
</div>
</div>
</div>
<div class="col-6 g-md-4 g-2">
<div class="card text-white bg-warning text-black mb-3" style="max-width: 18rem;">
<div class="card-header text-dark text-uppercase">Responsive</div>
<div class="card-body text-dark">
<h5 class="card-title text-uppercase">Responsiveness</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk
of the card's content.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="container">
<hr>
</div>
<!-- Developers -->
<section class="container-fluid bg-white" id='team'>
<div class="container py-5">
<h1 class=' text-uppercase '>Our Team</h1>
<p class=' text-secondary teamDesc text-capitalize'>Team of 3 Talented & Experienced Developers with
Amazing skills and got Tendancy to Develop Responsive Websites within your Dead Line</p>
<p></p>
<!-- Actual Programer cards -->
<div class="container-fluid mt-5 d-sm-flex align-items-center justify-content-around">
<img class='developers' src="developer1.png" alt="">
<div class="ms-sm-5 ms-0 my-sm-0 my-2 me-sm-0 me-5">
<h1 class='text-uppercase '>Wentworth Miller</h1>
<h5 class="text-secondary text-uppercase mb-sm-4 mb-2">Masters in Computer Applications</h5>
<p class="text-dark ">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eum deleniti voluptatum suscipit voluptatibus magni ratione enim iure veritatis laborum provident nulla esse sed reprehenderit est at, earum vitae placeat deserunt.</p>
</div>
</div>
<div class="container-fluid mt-5 d-sm-flex flex-row-reverse align-items-center justify-content-md-around">
<img class='developers' src="developer3.png" alt="">
<div class="ms-sm-5 ms-0 my-sm-0 my-2 me-sm-0 me-5">
<h1 class='text-uppercase '>Luther Noguier</h1>
<h5 class="text-secondary text-uppercase mb-sm-4 mb-2">Masters in Information technology</h5>
<p class="text-dark ">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eum deleniti voluptatum suscipit voluptatibus magni ratione enim iure veritatis laborum provident nulla esse sed reprehenderit est at, earum vitae placeat deserunt.</p>
</div>
</div>
<div class="container-fluid mt-5 d-sm-flex align-items-center justify-content-md-around">
<img class='developers' src="developer2.jpg" alt="">
<div class="ms-sm-5 ms-0 my-sm-0 my-2 me-sm-0 me-5">
<h1 class='text-uppercase '>Michael Scofield</h1>
<h5 class="text-secondary text-uppercase mb-sm-4 mb-2">IT Engineer</h5>
<p class="text-dark ">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eum deleniti voluptatum suscipit voluptatibus magni ratione enim iure veritatis laborum provident nulla esse sed reprehenderit est at, earum vitae placeat deserunt.</p>
</div>
</div>
<!-- <div class="container-fluid mt-5">
<img class='developers' src="developer2.jpg" alt="">
</div>
<div class="container-fluid mt-5">
<img class='developers' src="developer3.png" alt="">
</div> -->
</div>
</section>
<!-- Donate -->
<section class="container-fluid bg-dark" id='donate'>
<div
class="container py-lg-3 py-sm-5 py-3 d-flex align-items-center justify-content-lg-around justify-content-between">
<div class='d-flex align-items-center'>
<img src="heart.png" class='heart' alt="">
<h1 class='text-white mx-3 fs-1'>Donate Us</h1>
</div>
<div class="d-lg-flex align-items-center justify-content-lg-around justify-content-lg-evenly">
<button type="button" class="btn btn-warning d-sm-inline-block d-none me-4">$100</button>
<button type="button" class="btn btn-warning d-sm-inline-block d-none me-4">$200</button>
<button type="button" class="btn btn-warning d-sm-inline-block d-none me-4">$300</button>
<div
class="d-flex align-items-center justify-content-md ms-lg-5 ms-0 mt-lg-0 mt-sm-4 mt-0 justify-content-evenly">
<input type="number" class="form-control" id="payform" aria-describedby="number" placeholder="$">
<button class="btn btn-warning text-dark mx-lg-3 mx-2 ">Pay</button>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section class="container-fluid bg-warning" id='contact'>
<div class="container-fluid d-sm-flex justify-content-between py-sm-3 py-4">
<div class='container p-md-5 p-2 me-4 my-md-2 my-3 py-sm-0 py-4 '>
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<!-- <div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div> -->
</div>
<div class="mb-3">
<label for="subject" class="form-label">Subject</label>
<input type="email" class="form-control" id="subject" aria-describedby="emailHelp">
</div>
<div class="form-floating mb-3">
<textarea class="form-control" placeholder="Leave a comment here" id="subject"
style="height: 100px"></textarea>
<label for="subject">Description</label>
<!-- <label for="floatingTextarea">Comments</label> -->
</div>
<button type="submit" class="btn btn-dark text-warning">Submit</button>
</form>
</div>
<div class='container p-md-5 p-2'>
<h1>Contact Details</h1>
<hr>
<h3 class="mt-lg-5 mt-md-2 mt-0">Address</h3>
<p>2nd Shop, Samriddhi commercial complex, madan mohan malvia road Near telephone exchange, opp. rally
wolff, Mulund West, Mumbai, Maharashtra 400080</p>
<h4 class='mt-lg-5 mt-md-2 mt-0'>Mobile Number</h4>
<p class='m-0'>Office - 9998887766</p>
<p>Personal - 8899223234</p>
</div>
</div>
</section>
<!-- Copyright -->
<section class="container-fluid bg-dark text-warning">
<div class="container d-flex align-items-center justify-content-center p-4">
© Copyright by Lokesh
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj"
crossorigin="anonymous"></script>
</body>
</html>