generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (69 loc) · 3.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="A fun quiz for fans of Star Trek and Star Trek Voyager">
<meta name="keywords" content="star trek, voyager, fans, quiz, star trek quotes">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon/favicon-16x16.png">
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="./assets/favicon/apple-touch-icon.png">
<link rel="stylesheet" href="./assets/css/styles.css">
<title>Trekkies Games - Home Page</title>
</head>
<body class="home-bg">
<div>
<!-- header area for game logo -->
<div>
<a href="index.html" class="logo">
<h1 class="logo">Trekkies Games</h1>
</a>
</div>
<!-- welcome area and game rules -->
<div class="heading-container">
<h2 class="welcome-text">Welcome, fellow Trekkies.</h2>
<p>
Here you'll find a Star Trek Voyager mini-quiz and a Star Trek Quote Generator.
Live long and prosper!
</p>
<h3>How to play:</h3>
<p>1. Choose a game</p>
<p>2. Complete the missions</p>
<p>3. Have fun!</p>
<!-- mini-games links styled as buttons -->
<div class="games">
<a class="quiz-link" href="quiz.html">Voyager Quiz</a>
<a class="quotes-link" href="quotes.html">Star Trek Quotes</a>
</div>
</div>
</div>
<!-- footer area to hold button for modal popup -->
<button id="open-modal" class="modal-open-btn">Send a feedback</button>
<!-- modal container area -->
<div class="modal-popup" id="modal-container">
<div class="modal">
<div class="modal-intro">
<h3 class="feedback-intro">Hello, fellow Trekkie!</h3>
<p class="feedback-text">
We hope you enjoyed the games. Let us know what you think about them. Haven't played yet? Get them a try!
Click on the logo to go to other pages. Live long and prosper!
</p>
</div>
<div class="feedback-container">
<form action="https://formdump.codeinstitute.net/" method="get" class="feedback-form">
<label for="fname">First Name</label>
<input type="text" name="first-name" class="feedback-input" id="fname" required>
<label for="email" class="email">Email</label>
<input type="email" name="email" class="feedback-input" id="email" required>
<label for="message" class="message">Your message</label>
<textarea name="message" class="feedback-text-area" id="message" cols="80" rows="6" placeholder="Enter your message or feedback" required></textarea>
<input type="submit" class="email-btn" value="Send feedback">
</form>
</div>
<button id="close-modal" class="modal-close-btn">Close me</button>
</div>
</div>
<script src="./assets/js/main.js" defer></script>
</body>
</html>