-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
83 lines (69 loc) · 3.46 KB
/
home.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
81
82
83
<!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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/9e48a2a952.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<title>Emme's Arcade 🕹️</title>
</head>
<body class="bg-retro">
<div class="px-4 py-5 my-5 text-center bg-dark p-2 text-white bg-opacity-75">
<h1>👾 Emme's Arcade 🕹️</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-3">Welcome to my little arcade, made with simple JS, CSS and HTML.
<br> Take a seat and relax with some good retro games!
</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<div class="card zoom" style="width: 18rem;">
<img src="https://media.istockphoto.com/vectors/rock-paper-scissors-vector-illustration-vector-id1056840214?k=20&m=1056840214&s=612x612&w=0&h=NG6ZNvaujD7SlQFdeLxblIXzibx23zQJwZWe4Ue3LH0=" class="card-img-top">
<div class="card-body">
<a class="link-dark stretched-link" href="Games/Rock-Paper-Scissors/index.html">
<h5 class="card-title">Rock-Paper-Scissors</h5>
</a>
</div>
</div>
<div class="card zoom" style="width: 18rem;">
<img src="https://play-lh.googleusercontent.com/xJEnpmv5P69TGSbAq1pq6ws68SW9X6OH6iHtEoXhHbeL-KxGy77Oyf1MX0Tidt_HGQ" class="card-img-top img-memory">
<div class="card-body">
<a class="link-dark stretched-link" href="Games/Memory Game/index.html">
<h5 class="card-title">Memory Game</h5>
</a>
</div>
</div>
<div class="card zoom" style="width: 18rem;">
<img src="https://cdn-icons-png.flaticon.com/512/1695/1695590.png" class="card-img-top img-memory">
<div class="card-body">
<a class="link-dark stretched-link" href="Games/Whac-a-mole/index.html">
<h5 class="card-title">Whac-a-mole</h5>
</a>
</div>
</div>
<div class="card zoom" style="width: 18rem;">
<img src="https://apprecs.org/ios/images/app-icons/256/a2/967684514.jpg" class="card-img-top img-memory">
<div class="card-body">
<a class="link-dark stretched-link" href="Games/Breakout/index.html">
<h5 class="card-title">Breakout</h5>
</a>
</div>
</div>
<div class="card zoom" style="width: 18rem;">
<img src="https://it.seaicons.com/wp-content/uploads/2016/04/Froggy-icon.png" class="card-img-top img-memory">
<div class="card-body">
<a class="link-dark stretched-link" href="Games/Frogger/index.html">
<h5 class="card-title">Frogger</h5>
</a>
</div>
</div>
</div>
<button class="btn btn-dark">
<a href="https://github.com/emmegray/arcade" class="link-light">
<i class="fa-brands fa-github"></i> made by Emme Gray</a>
</button>
<embed src="/Assets/arcade.mp3" loop="true" autostart="true" width="2" height="0"></embed>
</div>
</div>
</body>
</html>