-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·73 lines (72 loc) · 2.96 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>drobilica</title>
<meta name="title" content="drobilica">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="files/animations.css">
<link href="files/style.css" rel="stylesheet">
<script>
window.onload = function() {
const currentYear = new Date().getFullYear();
document.getElementById("currentYear").textContent = currentYear;
}
</script>
</head>
<body>
<div class="cloud floating">
<img src="files/cloud.png" alt="Drobilica Themes">
</div>
<div class="cloud pos1 fliped floating">
<img src="files/cloud.png" alt="Drobilica Themes">
</div>
<div class="cloud pos2 floating">
<img src="files/cloud.png" alt="Drobilica Themes">
</div>
<div class="cloud pos3 fliped floating">
<img src="files/cloud.png" alt="Drobilica Themes">
</div>
<div id="wrapper" style="height: 961px;">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<br>
<br>
<br>
</div>
<div class="col-sm-12 align-center">
<div class="icon">
<a href="https://drobilica.com/cv" title="CV"><i class="fas fa-file-alt" style="font-size:80px"></i></a>
</div>
<br>
<div class="icon">
<a href="https://www.linkedin.com/in/dusan-stanic/" title="Linkedin"><i class="fab fa-linkedin-in" style="font-size:80px"></i></a>
</div>
<br>
<div class="icon">
<a href="cde/index.html" title="CDE"><i class="fa fa-code" style="font-size:80px"></i></a>
</div>
<br>
<div class="icon">
<a href="https://github.com/drobilica" title="GitHub"><i class="fab fa-github" style="font-size:80px"></i></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="row justify-content-center">
<div class="col-lg-6 mx-auto">
<p class="copyright">
© <span id="currentYear"></span> - <a href="https://drobilica.com/">drobilica.com</a> - All Rights Reserved.
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>