-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmini-bootstrap-exercise.html
More file actions
115 lines (113 loc) · 5.2 KB
/
mini-bootstrap-exercise.html
File metadata and controls
115 lines (113 loc) · 5.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mini Bootstrap Exercise</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="css/mini-bootstrap-exercise.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<!-- Start of Realtor link logo-->
<a class="navbar-brand" href="#">
<img src="https://static.rdc.moveaws.com/images/logos/rdc-logo-default.svg" alt="realtor.com" width="200"
height="30" loading="lazy">
</a>
<!-- End of Realtor link logo-->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Buy<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Sell</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Rent</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Mortgage</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Find Realtors<sup>®</sup></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">My Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">News & Insights</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<div class="container">
<div class="row">
<div class="col-5">
<button class="btn btn-sm btn-outline-secondary my-2 my-sm-0" type="button">Manage rentals</button>
</div>
<div class="col-sm">
<button class="btn btn-sm btn-outline-secondary my-2 my-sm-0" type="button">Advertise</button>
</div>
<div class="col-md">
<button class="btn btn-sm btn-danger my-2 my-sm-0" type="submit">Sign Up</button>
</div>
</div>
</div>
<div class="container">
</div>
</form>
</div>
</nav>
<main class="container">
<div class="row">
<div class="card" style="width: 18rem;">
<img src="img/house1.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<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 class="card" style="width: 18rem;">
<img src="img/house2.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<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 class="card" style="width: 18rem;">
<img src="img/house3.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<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 class="card" style="width: 18rem;">
<img src="img/house4.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<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 class="card" style="width: 18rem;">
<img src="img/house5.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<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 class="card" style="width: 18rem;">
<img src="img/house6.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<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>
</main>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"></script>
</body>
</html>