forked from alissatroiano/team-8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (76 loc) · 3.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Meta Descriptions -->
<meta name="description" content="Sometimes the emoji can have different meanings. Check it out!">
<!--Font Awesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--Bootstrap CDN-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<!--Adobe Fonts-->
<link rel="stylesheet" href="https://use.typekit.net/tdr5lzp.css">
<!--Custom CSS-->
<link rel="stylesheet" href="assets/css/style.css">
<!--Title-->
<title>Emojourney</title>
</head>
<body class="vh-100 cover-page">
<!--top navigation-->
<nav class="navbar navbar-expand-lg bg-black navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.html"><i class="fas fa-compass"></i> Emojourney</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-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 ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active-tab" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="guide.html">Guide</a>
</li>
<li class="nav-item">
<a class="nav-link" href="team.html">Team</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="container-fluid">
<div class="row d-flex justify-content-center cover-main">
<div class="col-12" id="cover" >
<h1 class="text-lg">
Emojourney
</h1>
<p class="cover-p">
A traveler's guide to using (and not accidentally abusing) Emoji's around the world
</p>
<a type="button" class="btn cta-btn btn-lg btn-cover" href="guide.html">
Guide</a>
</div>
</div>
</section>
<footer>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="guide.html">Guide</a></li>
<li><a href="team.html">Team</a></li>
</ul>
<hr>
<a href="https://www.linkedin.com" target="_blank" class="footer-social-networks" aria-label="Go to Linkedin page (open in a new tab)"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://github.com" target="_blank" class="footer-social-networks" aria-label="Go to Github page (open in a new tab)"><i class="fa-brands fa-github"></i></a>
</footer>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"></script>
</body>
</html>