-
Notifications
You must be signed in to change notification settings - Fork 0
/
lenses.html
99 lines (98 loc) · 3.7 KB
/
lenses.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<!-- Joao Dantas 100292405 -->
<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="stylesheet" href="style/style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,700"
rel="stylesheet"
/>
<link
rel="icon"
href="/images/PortfolioIcon.png"
type="png"
sizes="16x16"
/>
<title>History of Games</title>
</head>
<body>
<video autoplay loop muted id="myVideo">
<source src="images/Fog - 23496.mp4" type='video/mp4'>
<img src="images/landingPageImg.jpg" alt="Rising sun">
<!-- this imaage will be displayed if the video tag is broken -->
</video>
<div class="grid">
<div class="header">
<header>
<h1><span>A</span>ssignment <span>2</span></h1>
</header>
</div>
<div class="nav">
<nav>
<ul id="navBar">
<li>
<a class="hrefLink" href="references.html">References</a>
</li>
<li>
<a class="hrefLink" href="group.html">Group</a>
</li>
<li>
<a class="hrefLink" href="structuralElements.html">Structural Elements</a>
</li>
<li><a class="hrefLink" href="#">Lenses</a></li>
<li>
<a class="hrefLink" href="whyRE4.html">Impact of Resident Evil 4</a>
</li>
<li><a class="hrefLink" href="index.html">Home</a></li>
</ul>
</nav>
</div>
<main class="mainProjects">
<a class="photoProject1" href="actionInteractionLens.html">
<p class="projectDescrip">
Lens of Actions and Interactions
</p>
</a>
<a class="photoProject2" href="coreLoopsAndGoals.html">
<p class="projectDescrip">
Lens of Core Game Loops & Goals
</p>
</a>
<a class="photoProject3" href="challangeLens.html">
<p class="projectDescrip">
Lens of Challenges
</p>
</a>
<a
class="photoProject4"
href="emergenceLens.html"
>
<p class="projectDescrip">Lens of Emergence</p>
</a>
<a class="photoProject5" href="flowLens.html">
<p class="projectDescrip">
Lens of Flow
</p>
</a>
<a class="photoProject6" href="combatLens.html">
<p class="projectDescrip">
Lens of Combat Encounters
</p>
</a>
</main>
<div class="footer">
<footer></footer>
</div>
</div>
<script src="portifolio.js"></script>
</body>
</html>