-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcer.html
57 lines (57 loc) · 2.42 KB
/
cer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/032ed71b0e.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="cer.css">
<link rel="stylesheet" href="home.css">
<title>My Journey</title>
</head>
<body>
<nav>
<div class="first-navbar">
<ul>
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#" class="diff">Certificate</a></li>
</ul>
</div>
<div class="second-navbar">
<div class="navbar-logo">
<a href="#"><img src="./Images/logo.png" alt="myJourney-logo"></a>
</div>
<div class="navbar-nav">
<ul>
<li><a href="home.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="tickets.html">Tickets</a></li>
<li class="my-game-animate"><a href="my-game.html" class="special">My Game</a></li>
</ul>
</div>
</div>
</nav>
<main class="cert">
<i class="fa fa-bars"></i>
<div class="cert-grid">
<div class="cert-details">
<h1 class="cert-heading">My Certificate</h1>
<p class="cert-headline"><i class="fa fa-angle-right"></i><i class="fa fa-angle-right"></i><i class="fa fa-angle-right"></i><span>Note:</span> This is the final Certificate which collects all the 5 certificates of the 5 courses.</p>
<div class="img-container">
<img src="./Images/main-cert.jpeg" alt="certification">
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="footer-flexbox">
<a href="#"><img src="./Images/logo.png" alt="myJourney-logo"></a>
<div class="footer-cert-details">
<p>© 2020 My Journey To Game Development. Some Rights Reserved.</p>
<p>With All Love To <a href="#">Microverse</a>.</p>
</div>
</div>
</footer>
</body>
</html>