-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrontpage.html
More file actions
145 lines (128 loc) · 4.37 KB
/
frontpage.html
File metadata and controls
145 lines (128 loc) · 4.37 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
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Complete Bootstrap 4 Website Layout</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-ed navbar-light bg-light" sticky-top>
<div class="container-fluid">
<!--takes up 100%of screen -->
<a class="navbar-brand" href="#"><img src="BPGC.png " height="40" /></a>
<div class="row text-center padding">
<h2>Hi! I am Amarjeet</h2>
</div>
<!--<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarResponsive"
></button>
-->
<!--navigation collapses due to the collapse button -->
</div>
</nav>
<!--- Image Slider -->
<div id="slides" class="carousel slide" data-ride="carousel">
<!--<ul class="carousel-indicator">
<li data-target="#slides" data-slide-to="0"></li>
<li data-target="#slides" data-slide-to="1"></li>
<li data-target="#slides" data-slide-to="2"></li>
</ul> -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="cft.jpeg" height="800" alt="" />
<div class="carousel-caption">
<h4 class="display-2" color="black">Front-End Developer</h4>
<h3>I build value through Design</h3>
<p>Code, Design, Innovate</p>
<a href="viewprof.html"
><button type="button" class="btn btn-outline-light btn-lg">
View Profile
</button></a
>
<!-- <button type="button" class="btn btn-primary btn-lg">
Contact
</button> -->
</div>
</div>
<!--<div class="carousel-item">
<img src="img/background2.png" alt="" />
</div>
<div class="carousel-item">
<img src="img/background3.png" alt="" />
</div>-->
</div>
</div>
<!--- Jumbotron
<div class="container-fluid">
<div class="content-wrapper" ;>
<div style="background-image: url('images.jpeg');"></div>
<div class="text-wrapper">
<h1 class="display-2">Bootstrap</h1>
<h3>Complete Website Layout</h3>
<button type="button" class="btn btn-outline-light btn-lg">
VIEW DEMO
</button>
</div>
</div>
</div>
<!--- Welcome Section
<div class="container-fluid">
<div class="container-fluid padding">
<div class="row welcome text-center">
<div class="col-12">
<h1 class="display-4">Built with ease.</h1>
</div>
<hr />
<div class="col-12">
<p class="lead">welcome to this website</p>
</div>
</div>
</div>
</div>
<!--- Three Column Section
<div class="container-fluid padding">
<div class="row text-center padding"></div>
<div class="col-xs-12 col-sm-6 col-md-4"></div>
<hr class="my-4" />
</div> -->
<!--- Two Column Section -->
<!--- Fixed background -->
<!--- Emoji Section -->
<!--- Meet the team -->
<!--- Cards -->
<!--- Two Column Section -->
<!--- Connect -->
<!--- Footer -->
<footer>
<span>
<div class="container-fluid padding">
<div class="row text-center">
<div class="col-md-4">
<img src="img/w3newbie.pagination" alt="" />
<hr class="light" />
<p>9079305193</p>
<p>simbalamba@gmail.com</p>
<p>P-47, Shankar Vihar, Delhi-110010</p>
</div>
<div class="col-md-4">
<hr class="light" />
</div>
</div>
</div>
</span>
</footer>
</body>
</html>