-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
158 lines (126 loc) · 5.24 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>resume</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="https://kit.fontawesome.com/0983d3cc4b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<div class="row-top-menu" >
<ul class="text-white mt-3" id="navbar">
<a class="text-white" href="#about"><li>About</li></a>
<a class="text-white" href="#about"><li>Resume</li></a>
<a class="text-white" href="#works"><li>Works</li></a>
<a class="text-white" href="#contact"><li>Contact</li></a>
</ul>
</div>
<div class="row-banner mt-5">
<div class="row-text">
<h1 class="responsive-headline" id="responsive-headline"> I'm Strelbytskyi Myroslav.</h1>
<h6 class="sub-header"> junior java developer</h6>
</div>
</div>
</div>
</header>
<section id="about" class="d-flex justify-content-center align-items-center pt-5 pb-5">
<div class="container text-white pb-5 pt-5">
<div class="row mt-5 mb-5 ">
<div class="col-sm-3 d-flex justify-content-center">
<img id="optionalstuff" src="img/guy.jpg">
</div>
<div class="col-sm-9">
<h2>About me</h2>
<p class="mt-1">I'm a student. I like programming in free time.
</p>
<div class="row">
<div class="col-sm-6">
<h2>Contact Details</h2>
<p class="inform">
<span>[email protected]</span>
<span>Phone: +380977793668</span>
<span>Country: Ukraine</span>
</p>
</div>
<div class="col-sm-6 download-block d-flex justify-content-center align-items-center">
<a class="btn btn-secondary pt-3 " href="https://drive.google.com/file/d/1vwisBaKML7uXTmxeZacXGQEhqFx0cifh/view" role="button">
<img src="img/download.png"/>
<p>Resume</p>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="works" class="pt-4 pb-4 pt-5 pb-5">
<div class="container mt-5 mb-5 pb-5 pt-5">
<div class="row d-flex justify-content-center">
<h1 class="header">CHECK OUT SOME OF MY WORKS</h1>
<div class="row">
<div class="col-4">
<a target="_blank" href="https://github.com/Bananiys202024/ShopOnline"><img src="img/works/1.jpg"/></a>
</div>
<div class="col-4">
<a target="_blank" href="https://github.com/Bananiys202024/blog"><img src="img/works/2.jpg"/></a>
</div>
<div class="col-4">
<a target="_blank" href="https://github.com/Bananiys202024/learn-foreign-languages"><img src="img/works/3.jpg"/></a>
</div>
</div>
<h1 class="header pt-4">CHECK OUT SOME OF MY SMALL WORKS</h1>
<div class="row">
<div class="col-4">
<a target="_blank" href="https://github.com/Bananiys202024/Mini-browser"><img src="img/littleWorks/2.jpg"/></a>
</div>
<div class="col-4">
<a target="_blank" href="https://github.com/Bananiys202024/Java-library"><img src="img/littleWorks/1.jpg"/></a>
</div>
</div>
</div>
</div>
</section>
<footer id="contact" class="pt-4 pb-4">
<!-- Footer -->
<footer class="page-footer font-small mdb-color darken-3 pt-4">
<!-- Footer Elements -->
<div class="container justify-content-center">
<!--Grid row-->
<div class="row d-flex justify-content-center">
<!--Grid column-->
<div class="col-md-6 icons ">
<a class="fab-href" target="_blank" href="https://github.com/Bananiys202024">
<i class="fab fa-github"></i>
</a>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</div>
<!-- Footer Elements -->
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2018 Copyright:
<a target="_blank" href="https://github.com/Bananiys202024"> Bananiys202024</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
</footer>
<script>
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("navbar").style.top = "0";
} else {
document.getElementById("navbar").style.top = "-100px";
}
prevScrollpos = currentScrollPos;
}
</script>
</body>
</html>