-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
57 lines (54 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About | Weather application</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="styles/face.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row col-xs-12">
<div class="col-xs-8 col-xs-offset-2 col-sm-offset-4">
<ul class="nav nav-pills">
<li role="presentation"><a href="index.html">Locate me</a></li>
<li role="presentation"><a href="take-a-look.html">Take a look</a></li>
<li role="presentation"><a href="my-places.html">My places</a></li>
<li role="presentation" class="active"><a href="about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="heading container">
<div class="row col-sm-12">
<div class="col-sm-6 col-sm-offset-3">
<h1 class="lab-h1">About</h1>
</div>
</div>
</div>
<div class="contacts container">
<div class="col-xs-6">
<h2>Webpage</h2>
</br>
<p>The web application localizes your current position and receives the weather data.</p>
<p>Developed as a semestral work as a part of the course 4IZ268 Web Technologies.</p>
</br>
<a href="https://insis.vse.cz/auth/katalog/syllabus.pl?predmet=121725"><button type="button" class="btn btn-primary">Course syllabus</button></a>
<a href="http://4iz268.github.io/"><button type="button" class="btn btn-primary">Course GitHub</button></a>
</div>
<div class="col-xs-6">
<h2>Author</h2>
</br>
<p>Nikolas Charalambidis</p>
<p>Email: [email protected]</p>
<br>
<a href="https://www.facebook.com/nikolas.charalambidis"><button type="button" class="btn btn-primary">Facebook</button></a>
<a href="https://github.com/Nikolas-Charalambidis"><button type="button" class="btn btn-primary">GitHub</button></a>
<a href="https://www.linkedin.com/in/nikolas-charalambidis-27b36293"><button type="button" class="btn btn-primary">LinkedIn</button></a>
</div>
<script type="text/javascript" src="scripts/tooltip.js"></script>
</body>
</html>