-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
80 lines (60 loc) · 3.07 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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Product Design Website</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Fredoka+One&family=Montserrat:wght@400;700;900&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/01dc03ad8e.js" crossorigin="anonymous"></script>
<!-- FAVICON LINK -->
<link rel="icon" href="favicon.ico">
<!-- Bootstrap stylesheet -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- CSS Stylesheet -->
<link rel="stylesheet" href="css/styles.css">
<!-- Bootstrap scripts -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
</head>
<body>
<section id="home">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container-fluid">
<a class="navbar-brand" href="">My Juice</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo01" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="About us.html">About us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact us.html">Contact us</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="title">
<div class="title-text">
<h1 class="title-heading">Juice that makes cent.</h1>
<p class="title-para">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p>
<button type="button" class="btn btn-danger" name="button">Learn More</button>
</div>
<div class="title-img">
<img class="juice-img" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTGmvcVRykFcF75fbnx0dURyktykiNwXidVPg&usqp=CAU" alt="juice-img">
</div>
</div>
<div class="footer">
<i class="footer-icon fab fa-facebook fa-3x"></i>
<i class="footer-icon fab fa-twitter-square fa-3x"></i>
<i class="footer-icon fab fa-instagram fa-3x"></i>
</div>
</section>
</body>
</html>