-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (46 loc) · 1.74 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title id="webTitle"></title>
<!-- Bootstrap css -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<!-- Style css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Header -->
<div id="header"></div>
<!-- Content -->
<section class="content">
<div class="container-fluid p-0">
<div class="img-bg">
<img src="images/wedding.jpg" alt="background">
</div>
<div class="content-text">
<div class="container-xl">
<div class="row">
<div class="col-lg-6 text-center">
<div class="content-title">
<h1>Welcome to Rio Cafe</h1>
</div>
<button class="btn btn-primary btnStart">
<a href="workOn.html">Get Started</a>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<div id="footer"></div>
</body>
<!-- Bootstrap js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
<script src="js/script.js"></script>
</html>