-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy-game.html
64 lines (64 loc) · 2.68 KB
/
my-game.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
<!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="my-game.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="cer.html" 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>
<i class="fa fa-bars"></i>
<div class="game-grid">
<div class="game-details">
<h1 class="game-heading">Colors Experiments</h1>
<p class="game-headline">This is the game I've built in the Capstone Project within. The last project in the specialization.</p>
<p class="game-note"><span>Note: </span>I've uploaded the game in the free website <a href="https://itch.io/">itch.io</a>.</p>
</div>
<div class="the-game">
<iframe src="https://itch.io/embed/567418"></iframe>
</div>
</div>
</main>
<div class="important-game">
<div class="important-game-items">
<h4 class="important-game-heading">Credits</h4>
<p class="credit">Thanks to the game idea owner and friend <span>Mohab Akram ♥</span></p>
</div>
</div>
<footer>
<div class="footer-flexbox">
<a href="#"><img src="./Images/logo.png" alt="myJourney-logo"></a>
<div class="footer-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>