"Bootstrap 4 - Food Menu Tab"
Bootstrap 4.1.1 Snippet by voeurnchy

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oleo+Script" rel="stylesheet">
<body>
<section class="menu_list mt-60 mb-60">
<div class="container">
<div class="row">
<div class="col-xl-12">
<div class="section-title text-center mb-60">
<p>Famous for good food</p>
<h4>our menu</h4>
</div>
</div>
</div>
<div class="row">
<ul class="nav nav-tabs menu_tab" id="myTab" role="tablist">
<li class="nav-item">
<a class="nav-link" id="breakfast-tab" data-toggle="tab" href="#breakfast" role="tab" aria-selected="false">Breakfast</a>
</li>
<li class="nav-item">
<a class="nav-link" id="lunch-tab" data-toggle="tab" href="#lunch" role="tab" aria-selected="false">Lunch</a>
</li>
<li class="nav-item">
<a class="nav-link active show" id="dinner-tab" data-toggle="tab" href="#dinner" role="tab" aria-selected="true">Dinner</a>
</li>
</ul>
</div>
<div class="row">
<div class="tab-content col-xl-12" id="myTabContent">
<div class="tab-pane fade" id="breakfast" role="tabpanel" aria-labelledby="breakfast-tab">
<div class="row">
<div class="col-md-6">
<div class="single_menu_list">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
body {
font-family: 'Montserrat', sans-serif;
color: #333;
line-height: 1.6;
}
.mb-60 {
margin-bottom: 60px;
}
.section-title p {
font-size: 24px;
font-family: Oleo Script;
margin-bottom: 0px;
}
.section-title h4 {
font-size: 40px;
text-transform: capitalize;
color: #FF5E18;
position: relative;
display: inline-block;
padding-bottom: 25px;
}
.section-title h4::before {
width: 80px;
height: 1.5px;
bottom: 0;
left: 50%;
margin-left: -40px;
}
.section-title h4::before, .section-title h4::after {
position: absolute;
content: "";
background-color: #FF5E18;
}
#myTabContent {
margin-top: 50px;
}
.menu_tab {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: