-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
65 lines (61 loc) · 2.48 KB
/
about.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
<!-- Coded by Mark -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Big Board Collection | About</title>
<!-- importing all necesarry css -->
<link href="css/style.css" type="text/css" rel="stylesheet" />
<link href="css/navbar.css" type="text/css" rel="stylesheet" />
<link href="css/about.css" type="text/css" rel="stylesheet" />
</head>
<body>
<!-- wrapper for the navbar -->
<div class="navbar-wrapper">
<div class="navbar-container clearfix">
<a href="index.html"> <img src="images/Logo_300x300.png" height="50" alt="Logo"> </a>
<a href="games.html">GAMES</a>
<a href="events.html">EVENTS</a>
<a href="about.html">ABOUT US</a>
</div>
</div>
<!-- About Us section divided into a separate section (Header and the group participants)
Each person is like a module that has the information filled in-->
<section class="AboutUs">
<div class="about-us-heading">
<h1 class="About">
About Us
</h1>
</div>
<!-- clearfix group of boxes -->
<div id="Us" class="clearfix">
<!-- the box itself containing everything for a person -->
<div class="box">
<a href="https://www.linkedin.com/in/jakub-kuka/"><img src="images/Faces/JakubKuka.jpg"
alt="JakubKuka"></a>
<p class="center">
<a href="mailto:[email protected]">Jakub Kuka<br>[email protected]</a>
</div>
<div class="box">
<a href="https://www.linkedin.com/in/marcus-mitelea/"><img src="images/Faces/MarcusMit.jpg"
alt="MarcusMitelea"></a>
<p class="center">
<a href="mailto:[email protected]">Marcus Mitelea<br>[email protected]</a>
</div>
<div class="box">
<img src="images/Faces/RicardoFernandes.jpeg" alt="RicardoFernandes"></a>
<p class="center">
<a href="mailto:[email protected]">Ricardo Fernandes<br>[email protected]</a>
</div>
<div class="box">
<img src="images/Faces/FilipSvehlak.jpg" alt="FilipSvehlak"></a>
<p class="center">
<a href="mailto:[email protected]">Filip Švehlák<br>[email protected]</a>
</div>
</section>
</body>
<!-- simple footer -->
<footer>
<p>Sep Group 7 ©</p>
</footer>
</html>