-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
166 lines (146 loc) · 6.1 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!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">
<link rel="stylesheet" href="./style.css" />
<script src="./index.js"></script>
<title>Portfolio</title>
</head>
<body>
<header class="header">
<a href="#" class="logo"><img src="./img/LogoMakr_6FiGgD.png" height="50" width="50"></a>
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="#about-section">About me</a></li>
<li><a href="#portfolio-section">Portfolio</a></li>
<li><a href="#contact-section">Contact</a></li>
</ul>
</header>
<section id="hero-section">
<div class="hero">
<!-- <img src="./img/homepage.jpg" alt="homepagephoto"> -->
</div>
</section>
<div id="hero-box">
<div id="hero-text">
<h1>Hello, my name is Stefan</h1>
<h2>I'm a Front-end Developer</h2>
</div>
</div>
<div id="particles-js"></div>
<section id="about-section">
<div>
<h2>About Me</h2>
</div>
<div class="about-text">
<div class="img-div">
<img class="img" src='./img/portfolio-img 1.jpg' width="200" alt="portfolio pic" >
</div>
<p>
Motivated junior web developer.<br /><br />
Specialty:<br />
Front-end development, single page development, web application development, technical SEO.<br /><br />
I am a dedicated web developer with a passion for creating modern, eye-catching websites. During the period I have developed several websites and web apps.<br /><br />
Skills: <br />
I'm profficient in HTML5, CSS3 (PSD to HTML, media queries, SASS)<br />
JavaScript (ES6 / callbacks, closures, destructuring, local storage, promises)<br />
ReactJS<br />
Bootstrap 4<br />
Skilled in Wordpress CMS platform: WooCommerce/ Page Builders/ Plugin implementation<br /><br />
Goals:<br />
High quality, clean, modular code.<br /><br />
In my work I use dev tools and systems:<br />
- node package manager (npm)<br />
- xampp<br />
- git<br />
</p>
</div>
</section>
<section id="portfolio-section">
<h2 id="portfolio-h2">Portfolio</h2>
<div class="row">
<div class="column">
<h4>To-do-list</h4>
<p>Web App <br /> reactjs/semantic-ui (development phase)</p>
<a href="https://stefanvasic123.github.io/todolist/">live preview</a><br/>
<a class="preview" href="https://github.com/StefanVasic123/todolist">github link</a>
</div>
<div class="column">
<h4>UpTime</h4>
<p>Web App <br /> html/css/javascript (development phase)</p>
<a href="https://stefanvasic123.github.io/UpTimeBeta/">live preview</a><br/>
<a class="preview" href="https://github.com/StefanVasic123/UpTimeBeta">github link</a>
</div>
</div>
<div class="row">
<div class="column">
<h4>Mediator</h4>
<p>Web App <br /> reactjs/bootstrap (development phase)</p>
<a href="https://stefanvasic123.github.io/mediator/">live preview</a><br/>
<a class="preview" href="https://github.com/StefanVasic123/mediator">github link</a>
</div>
<div class="column">
<h4>Hit Song</h4>
<p>Landing Page <br /> html/css (development phase)</p>
<a href="https://stefanvasic123.github.io/hitsong/">live preview</a><br/>
<a class="preview" href="https://github.com/StefanVasic123/hitsong">github link</a>
</div>
</div>
</div>
</section>
<section id="contact-section">
<h2>Contact</h2>
<h3>You can contact me via email: [email protected]<br />
or<br /> +381656846351</h3><br />
<ul style="display: flex; flex-direction: row; justify-content: center; list-style-type: none; text-decoration: none; ">
<li style="padding-right: 10px">
<a href="https://github.com/StefanVasic123">
<img src="./img/githublogo.svg" width="25" height="25">
</a>
</li>
<li style="padding-right: 10px">
<a href="https://www.linkedin.com/in/stefan-vasic-096533155/">
<img src="./img/linedinIcon.jpg" width="25" height="25">
</a>
</li>
<li style="padding-right: 10px">
<a href="https://www.facebook.com/stefan.vasic.7545">
<img src="./img/facebooklogo.png" width="25" height="25">
</a>
</li>
<li style="padding-right: 10px">
<a href="https://medium.com/@stefvask">
<img src="./img/mediumlogo.png" width="25" height="25">
</a>
</li>
</ul>
</section>
<footer id="footer-menu">
<div class="left-footer">
<p class="copy"><i>Copyright© SV 2019</i></p>
</div>
<div class="right-footer">
<ul class="menu-bottom">
<li><a href="#">Home</a></li>
<li><a href="#about-section">About me</a></li>
<li><a href="#portfolio-section">Portfolio</a></li>
</ul>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
particlesJS.load('particles-js', 'particles.json', function() {
console.log('particles.json loaded...');
})
</script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TimelineMax.min.js">
</script>
<script src="animation.js"></script> -->
<!-- https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js -->
</body>
</html>