-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (60 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
<link rel="stylesheet" href="./styles/home.css">
<title>Welcome to Designasaur Park!</title>
</head>
<body>
<header>
<div></div>
<img src="./assets/headingImg.png" alt="heading logo">
<a href="./about-us/">about us</a>
</header>
<main class="outside-area">
<section class="home-top-row">
<p class="home-intro-paragraph">
<h3>Welcome to <span class="epic-name">Designasaur Park</span>! Here you can genetically engineer new dinosaurs based on different DNA types we have on hand. Well, what are you waiting for?</h3>
</p>
</section>
<section class="home-bottom-row">
<div></div>
<nav class="avatar-column">
<span class="avatar-instructions">Choose your avatar::: :: :</span>
<div class="avatars-set">
<label class="avatar-chassis">
<input type="radio" name="avatar" value="grant">
<img src="./assets/avatars/square-av_alan-grant.png" class="av-image" height="30" />
</label>
<label class="avatar-chassis">
<input type="radio" name="avatar" value="sattler">
<img src="./assets/avatars/square-av_ellie-sattler.png" class="av-image" height="30" />
</label>
<label class="avatar-chassis">
<input type="radio" name="avatar" value="malcolm">
<img src="./assets/avatars/square-av_ian-malcolm.png" class="av-image" height="30" />
</label>
</div>
</nav>
<nav class="security-column">
<div class="security-desk">
<p id="visitor-instructions"></p>
<nav class="visitor-check-in">
<input type="name" id="visitor-sign-in">
</nav>
<nav class="security-area">
<img src="./assets/fingerprint-scanner.png" id="security-scanner" width="64">
</nav>
</div>
</nav>
</section>
<section class="lower-spacing"></section>
</main>
<script type="module" src="app.js"></script>
</body>
</html>