-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (60 loc) · 1.87 KB
/
index.html
File metadata and controls
64 lines (60 loc) · 1.87 KB
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" />
<title>Document</title>
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,700"
rel="stylesheet"
/>
<style>
html {
font-family: "Roboto", sans-serif;
background: #d9e2ff;
}
.main {
text-align: center;
margin: auto;
display: grid;
}
.main a {
margin-top: 16px;
margin-bottom: 16px;
text-decoration: none;
font-size: 24px;
color: navy;
}
.main a:hover {
color: dodgerblue;
}
</style>
</head>
<body>
<div class="main">
<h1>5D Midterm Foodie App</h1>
<a href="PDF/Proposal_JS.pdf" target="new">Proposal</a>
<a href="PDF/Persona.pdf" target="new">Persona Definition</a>
<a href="PDF/User-Mood-Board.pdf" target="new">Mood Board </a>
<a href="PDF/Foodies-UI-Board.pdf" target="new">Design Mood Board</a>
<a
href="https://www.figma.com/proto/VZGvgXYqPZYEPOyOfRXZERFQ/Foodies?node-id=1%3A13&viewport=261%2C528%2C0.25&scaling=scale-down"
target="new"
>Interactive Prototype (Press 'R' to Restart)</a
>
<iframe
style="border: none; display:block;margin: 0 auto;"
width="800"
height="450"
src="https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Fproto%2FVZGvgXYqPZYEPOyOfRXZERFQ%2FFoodies%3Fnode-id%3D1%253A13%26viewport%3D-69%252C390%252C0.5%26scaling%3Dscale-down"
allowfullscreen
></iframe>
<a
href="https://www.figma.com/file/VZGvgXYqPZYEPOyOfRXZERFQ/Foodies?node-id=0%3A1"
target="new"
>Annotated Prototype</a
>
</div>
</body>
</html>