-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (70 loc) · 2.53 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
<html>
<head>
<title>PersonalStudio</title>
<!-- bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.container-fluid {
padding-top: 70px;
padding-bottom: 70px;
}
.bg-1{
background-color : #1abc9c;
color : #ffffff;
}
.bg-2 {
background-color: #474e5d;
color: #ffffff;
}
.bg-3 {
background-color: #ffffff;
color: #555555;
}
.bg-4 {
background-color: rgb(107, 107, 107);
padding: 0;
}
.ul-meni {
list-style-type: none;
color: white;
font-weight: bold;
margin:0;
padding: 20px;
}
.li-meni{
display: inline;
cursor: pointer;
padding: 20px;
}
.li-meni:hover{
background-color: black;
}
</style>
</head>
<body>
<div class="bg-4">
<ul class="ul-meni">
<li class="li-meni">Home</li>
<li class="li-meni">About</li>
<li class="li-meni">Kontact</li>
</ul>
</div>
<div class="container-fluid bg-1 text-center">
<h2>Developer / Computer Scientist</h2>
<img src="selfie-resized.jpg" style="display:inline" class="img-responsive img-circle margin" alt="ja" width="350" height="350" >
<h3>Uroš Keković</h3>
</div>
<div class="container-fluid bg-2 text-center">
<h3>What do i do?</h3>
<p>I'm currently a studing for Bechalor deegree at University of Montenegro, faculty of Matematics departent of Computer Science...</p>
</div>
<div class="container-fluid bg-3 text-center">
<h3>Where to find me</h3>
<p>aaaaaaaaaaaaaadaksfkasdsafafsaaaaaaaaas</p>
</div>
</body>
</html>