-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
95 lines (87 loc) · 4.02 KB
/
about.html
File metadata and controls
95 lines (87 loc) · 4.02 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/about.css">
<link rel="stylesheet" href="css/sidebar.css">
<script src="js/sidebar.js"></script>
</head>
<body>
<section id="sidebar" class="active">
<figure class="icon" onclick="toggleNavbar()">
<figure class="hamburger">
</figure>
</figure>
<nav class="navigation">
<a href="http://www.port.ac.uk/" target="_blank" class="logo">
<picture>
<source media="(max-height: 600px)" srcset="img/unilogo.png">
<source media="(max-width: 600px)" srcset="img/unilogo.png">
<img src="img/miniLogo.png" alt="University Logo">
</picture>
</a>
<ul>
<li><a href="index.html"><span>Home</span></a></li>
<li class="selected"><a><span>About</span></a></li>
<li><a href="litreview.html"><span>Literature Review</span></a></li>
<li><a href="cs-essay.html"><span>Computer Science Essay</span></a></li>
<li><a href="discovery.html"><span>Discovery Log</span></a></li>
<li><a href="hackPompeyGame/index.html"><span>Hack Pompey Game</span></a></li>
<li><a href="http://www.port.ac.uk/" target="_blank" onclick="loseFocus();"><span>University of Portsmouth</span></a></li>
</ul>
<ul class="validatorlinks">
<li><a href="https://validator.w3.org/check?uri=referer" target="_blank" onclick="loseFocus();"><span>W3C Markup Validator</span></a></li>
<li><a href="https://jigsaw.w3.org/css-validator/check?uri=referer&" target="_blank" onclick="loseFocus();"><span>W3C CSS Validator</span></a></li>
</ul>
</nav>
</section>
<main id="container">
<h1>About</h1>
<header>
<section id="factsection">
<h6>Quick facts:</h6>
<p>Birthday: April 1998</p>
<p>Gender: Male</p>
<p>Programming in Java experience: 5 years</p>
<p>Android Studio experience: 3 years</p>
<p>Eclipse experience: 3 year</p>
<p>Programming in C++ experience: 2 years</p>
<p>Programming in Python experience: 2 years</p>
</section>
<picture>
<source media="(max-width: 870px)" srcset="img/richard.png">
<img src="img/pundog.jpg" alt="A pun photo.">
</picture>
</header>
<section id="picturesection">
<h5>This is a responsive picture of nice scenery:</h5>
<picture>
<source media="(max-width: 870px)" srcset="img/smallmountain.jpg">
<img src="img/mountain.jpg" alt="A photo of mountains.">
</picture>
<h5>This is a responsive picture of Felidae:</h5>
<picture>
<source media="(max-width: 870px)" srcset="img/cat.jpg">
<img src="img/leopard.jpg" alt="A photo of a Felidae.">
</picture>
</section>
<section id="videosection">
<h5>This video contains some random band:</h5>
<video poster="img/funky.png" controls>
<source src="video/saxik.mp4" type="video/mp4">
<track default kind="subtitles" src="video/ensubsaxik.vtt" srclang="en">
We are sorry, your browser does not support the video element, but you can <a href="video/saxik.mp4">download the video</a> and watch it with your built in video player!
</video>
<h5>This video contains some cows eating grass:</h5>
<video poster="img/cow.jpg" controls>
<source src="video/grass.mp4" type="video/mp4">
<source src="video/grass.ogv" type="video/ogg">
<source src="video/grass.webm" type="video/webm">
<track default kind="subtitles" src="video/ensubgrass.vtt" srclang="en">
We are sorry, your browser does not support the video element, but you can <a href="video/grass.mp4">download the video</a> and watch it with your built in video player!
</video>
</section>
</main>
</body>
</html>