-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (120 loc) · 4 KB
/
index.html
File metadata and controls
136 lines (120 loc) · 4 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
</!DOCTYPE html>
<html>
<head>
<meta charset="utf-g">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Automobile</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.jpg" sizes="16x16">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<section id="navbar">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="#"><img src="icon.jpg "></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item ">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about-us">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#social-media">Contact</a>
</li>
</ul>
</div>
</nav>
</section>
<!..........banner section......>
<section id="banner">
<div class="container">
<div class="row">
<div class="col-md-6">
<p class="promo-title">BEST AUTOMOBILE AGENCY</p>
<p>Subscribe our Channel and watch our videos on automobile consulting. You can approach us on any time. </p>
<a href="#"><button class="btn btn-success">Contact</button></a>
</div>
<div class="col-md-6" text-center>
<img src="cover3.jpg" class="img-fluid">
</div>
</div>
</div>
</section>
<!......service....>
<section id="services">
<div class="container text-center">
<h2 class="title ">WHAT WE DO ?</h2>
<div class="row text-center">
<div class="col-md-4 services">
<img src="ser1.jpg" class="service-img">
<h4>All Body Maintaining</h4>
<p> ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolnim id est laborum.</p>
</div>
<div class="col-md-4 services">
<img src="ser2.jpg" class="service-img">
<h4>Internal Consulting</h4>
<p> ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolnim id est laborum.</p>
</div>
<div class="col-md-4 services">
<img src="ser3.jpg" class="service-img">
<h4>Oil & Wash</h4>
<p> ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolnim id est laborum.</p>
</div>
</div>
</div>
</section>
<!........About Us.........>
<section id="about-us">
<div class="container">
<h2 class="title text-center">WHY CHOOSE US ?</h2>
<div class="row">
<div class="col-md-6 about-us">
<p class="about-title">Why We Are Different ?</p>
<ul>
<li>Garrenty</li>
<li>Timing</li>
<li>Standerd</li>
<li>Varieties</li>
</ul>
</div>
<div class="col-md-6">
<img src="about.jpg" class="img-fluid">
</div>
</div>
</section>
<!.......Contact.......>
<section id="social-media">
<div class="container text-center">
<p>Find Us On Social Media</p>
<div class="social-icons">
<a href="#"><img src="fb.jpg"></a>
<a href="#"><img src="instag.jpg"></a>
<a href="#"><img src="link.jpg"></a>
<a href="#"><img src="git.jpg"></a>
</div>
</div>
</section>
<!.......footer........>
<footer>
<p align=center>2018</p>
</footer>
<script src="smooth-scroll.js"></script>
<script>
var scroll = new SmoothScroll('a[href*="#"]');
</script>
</body>
</html>