-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
134 lines (114 loc) · 5.89 KB
/
about.html
File metadata and controls
134 lines (114 loc) · 5.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Business Casual - Start Bootstrap Theme</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Josefin+Slab:100,300,400,600,700,100italic,300italic,400italic,600italic,700italic" rel="stylesheet" type="text/css">
<!-- Custom styles for this template -->
<link href="css/business-casual.css" rel="stylesheet">
<!-- Temporary navbar container fix -->
<style>
.navbar-toggler {
z-index: 1;
}
@media (max-width: 576px) {
nav > .container {
width: 100%;
}
}
</style>
</head>
<body>
<div class="tagline-upper text-center text-heading text-shadow text-white mt-4 hidden-md-down">Business Casual</div>
<div class="tagline-lower text-center text-expanded text-shadow text-uppercase text-white mb-4 hidden-md-down">3481 Melrose Place | Beverly Hills, CA 90210 | 123.456.7890</div>
<!-- Navigation -->
<nav class="navbar navbar-toggleable-md navbar-light navbar-custom bg-faded py-lg-4">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarExample" aria-controls="navbarExample" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="container">
<a class="navbar-brand text-uppercase text-expanded font-weight-bold hidden-lg-up" href="#">Start Bootstrap</a>
<div class="collapse navbar-collapse" id="navbarExample">
<ul class="navbar-nav mx-auto">
<li class="nav-item px-lg-4">
<a class="nav-link text-uppercase text-expanded" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active px-lg-4">
<a class="nav-link text-uppercase text-expanded" href="about.html">About</a>
</li>
<li class="nav-item px-lg-4">
<a class="nav-link text-uppercase text-expanded" href="blog.html">Blog</a>
</li>
<li class="nav-item px-lg-4">
<a class="nav-link text-uppercase text-expanded" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="bg-faded p-4 my-4">
<hr class="divider">
<h2 class="text-center text-lg text-uppercase my-0">About <strong>Business Casual</strong></h2>
<hr class="divider">
<div class="row">
<div class="col-lg-6">
<img class="img-fluid mb-4 mb-lg-0" src="img/slide-2.jpg" alt="">
</div>
<div class="col-lg-6">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Magnam soluta dolore voluptatem, deleniti dignissimos excepturi veritatis cum hic sunt perferendis ipsum perspiciatis nam officiis sequi atque enim ut! Velit, consectetur.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laboriosam pariatur perspiciatis reprehenderit illo et vitae iste provident debitis quos corporis saepe deserunt ad, officia, minima natus molestias assumenda nisi velit?</p>
</div>
</div>
</div>
<div class="bg-faded p-4 my-4">
<hr class="divider">
<h2 class="text-center text-lg text-uppercase my-0">Our <strong>Team</strong></h2>
<hr class="divider">
<div class="row">
<div class="col-md-4 mb-4 mb-md-0">
<div class="card h-100">
<img class="card-img-top img-fluid" src="http://placehold.it/750x450" alt="">
<div class="card-block text-center">
<h4 class="card-title m-0">John Smith <small class="text-muted">Job Title</small></h4>
</div>
</div>
</div>
<div class="col-md-4 mb-4 mb-md-0">
<div class="card h-100">
<img class="card-img-top img-fluid" src="http://placehold.it/750x450" alt="">
<div class="card-block text-center">
<h4 class="card-title m-0">John Smith <small class="text-muted">Job Title</small></h4>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card h-100">
<img class="card-img-top img-fluid" src="http://placehold.it/750x450" alt="">
<div class="card-block text-center">
<h4 class="card-title m-0">John Smith <small class="text-muted">Job Title</small></h4>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /.container -->
<footer class="bg-faded text-center py-5">
<div class="container">
<p class="m-0">Copyright © Your Website 2017</p>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/tether/tether.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>