-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (56 loc) · 1.91 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">
<title>Project 1</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="section">
<!-- MODAL OVERLAY -->
<div class="modal">
<div class="x"><p>X</p></div>
<div>
<form action="" id="myform">
<div class="form">
<input type="text" id='profileQ' class="name" placeholder="Name" required>
<input type="text" id='profileQ' class="color" placeholder="Favourite color" required>
<input type="text" id='profileQ' class="ate" placeholder="The last thing you ate" required>
<input type="text" id='profileQ' class="weather" placeholder="The weather outside right now" required>
<input type="text" id='profileQ' class="transit" placeholder="Subways or streetcars?" required>
<input type="text" id='profileQ' class="pineapple" placeholder="Pineapple on your pizza?" required>
<input type="submit" class="submit">
</div>
</form>
--> </div>
</div>
<!-- CREATE PROFILE BUTTON-->
<div class="createProfile">
<!-- create account button - triggers the modal overlay -->
<div class="button createProfileButton">
<p>Create Profile</p>
</div>
</div>
<!-- PROFILE (APPEARS AFTER FORM IS FILLED OUT) -->
<div class="profile">
<div class="profileContainer">
<div class="profilePic">
<img src="http://placekitten.com/200/200" alt="Profile Picture">
</div>
<div class="profileAnswers">
<h2 class="name"></h2>
<ul>
<li class="color">Favourite color: </li>
<li class="ate">Last food you ate: </li>
<li class="weather">The weather outside: </li>
<li class="transit">Preferred transit option: </li>
<li class="pineapple">Pineapple on pizza?: </li>
</ul>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>