-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojects.html
51 lines (45 loc) · 1.94 KB
/
projects.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
<!DOCTYPE html>
<html lang="en">
<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" />
<meta name="robots" content="index,follow">
<title>Projects | Portfolio</title>
<meta name="keywords" content="portfolio, web developer portfolio">
<meta name="description" content="Web developer portfolio">
<meta name="author" content="Aleksandar Glisovic">
<link rel="stylesheet" type="text/css" href="main.css">
<script src="index.js"></script>
</head>
<body>
<div id="container">
<nav id="navigation">
<a href="./index.html">About Me</a>
<a href="./projects.html">Projects</a>
<a href="./contact.html">Contact</a>
</nav>
<main>
<article id="projects">
<h2>Projects</h2>
<div id="imageContainer">
<section class="border">
<a href="https://codepen.io/Vojnuk/pen/QXprGz" target="_blank" rel="noreferrer noopener">
<h3>Calculator</h3>
<img src="./images/calculator.png" alt="calculator image" draggable="false">
</a>
</section>
<section id="under-construction" class="border">
<a href="https://immos-client.herokuapp.com/" target="_blank" rel="noreferrer noopener">
<img src="./images/mapa.png" alt="map image" draggable="false">
<div id="changing-element">
<h3>Interactive map of medieval Serbia</h3>
</div>
</a>
</section>
</div>
</article>
</main>
</div>
</body>
</html>