-
Notifications
You must be signed in to change notification settings - Fork 0
/
Group.html
128 lines (127 loc) · 4.98 KB
/
Group.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!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</a>
</li>
<li>
<a class="hrefLink" href="structuralElements.html">Structural Elements</a>
</li>
<li>
<a class="hrefLink" href="lenses.html">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="mainGroup">
<div>
<ol>
<li>
<cite>
Hector, H., Bettencourt, M., & Gabrio, A. (2014, August 02). Weapons - Resident Evil 4 Wiki Guide. Retrieved November 13, 2020, from https://www.ign.com/wikis/resident-evil-4/Weapons
</cite>
</li>
</ol>
</div>
<table class="t01">
<thead>
<tr>
<th colspan="2">The Team</th>
</tr>
</thead>
<tbody>
<tr>
<td>Joao Dantas </td>
<td>
<ul>
<li>Website Development and Design</li>
<li>Lens of Combat Encounters</li>
</ul>
</td>
</tr>
<tr>
<td>Aidan</td>
<td>
<ul>
<li>Lens of Actions & Interactions</li>
<li>Lens of Challenges</li>
<li>Structure Table</li>
</ul>
</td>
</tr>
<tr>
<td>Will</td>
<td>
<ul>
<li>Lens of Emergence</li>
<li>Lens of Flow</li>
</ul>
</td>
</tr>
<tr>
<td>Conner</td>
<td>
<ul>
<li>Lens of Core Game Loops & Goals</li>
</ul>
</td>
</tr>
</tbody>
</table>
</main>
<div class="footer">
<footer></footer>
</div>
</div>
<script src="portifolio.js"></script>
</body>
</html>