-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
60 lines (52 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- font-awesome, google-fonts, adobe-typekit -->
<script src="https://kit.fontawesome.com/9358576662.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=Roboto:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
</body>
<header>
<div class="header-wrapper">
<div class="logo-title">
<img class="logo" src="assets/nasa-logo.png" alt="New Nasa logo">
<h1>Mars <span>Birthday Card Generator</span></h1>
</div>
<h2>Mars 2020</h2>
</div>
</header>
<main>
<div class="main-wrapper">
<nav class="navigation">
<ul>
<li><a class="nav-link" href="">Create New</a></li>
<li><a class="nav-link" href="">Find</a></li>
</ul>
</nav>
<!-- Birthday card goes here -->
<form class="birthday-form" action="">
<label class="sr-only" for="email-input" id="email-input">Email</label>
<input class="email-input" type="email" placeholder="Email">
<label class="sr-only" for="name-input" id="name-input">Name</label>
<input class="name-input" type="text" placeholder="Name">
<label class="sr-only" for="birthday-input" id="birthday-input">Birthday</label>
<input class="birthday-input" type="text" placeholder="Birthday">
<label class="sr-only" for="message-input" id="message-input">Message</label>
<input class="message-input" type="text" placeholder="Message">
<label class="sr-only" for="form-button" id="form-button">Submit</label>
<input class="form-button" type="submit" value="Submit">
</form>
</div>
</main>
<footer>
<p>Copyright Krys & Nigel 2020. Design inspired by NASA's Send Your Name to Mars <a href="https://mars.nasa.gov/participate/send-your-name/mars2020/" target="_blank">campaign</a></p>
</footer>
<script src='https://code.jquery.com/jquery-3.4.0.min.js' integrity='sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg=' crossorigin='anonymous'></script>
<script src="script/script.js"></script>
</body>
</html>