-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script type="module" src="script.js" defer></script>
<script src="carousel.js" type="module" defer></script>
<title>Sims 2 Generator</title>
</head>
<body>
<h1>Sims 2 Generator</h1>
<button id="generate-sim">Generate Sim</button>
<div class="carousel">
<button class="carousel__button carousel__button-left">
<img class="carousel__chevron carousel__button-left" src="img/chevron_left.svg" alt="left button">
</button>
<div class="carousel__container">
<ul class="carousel__contents">
<li class="carousel__item current-slide default">
<h2>Welcome to the Sims 2 Generator!</h2>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-4.1 -0.1 8.2 14.2">
<path d="M 0 0 L -4 7 L 0 14 L 4 7 L 0 0 L -2 7 L 0 14 L 2 7 L 0 0
M -4 7 L 4 7" stroke="#ffffff" stroke-width="0.1" fill="#23f626"/>
</svg>
<p>You can generate as many Sims as you want. Press the "Generate Sim" button to begin...</p>
</li>
</ul>
</div>
<button class="carousel__button carousel__button-right">
<img class="carousel__chevron carousel__button-right" src="img/chevron_right.svg" alt="right button">
</button>
<div class="carousel__nav">
</div>
</div>
<footer>Made by <a href="https://github.com/ellis-burgess">Ellis Burgess</a></footer>
</body>
</html>