-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (107 loc) · 4.61 KB
/
index.html
File metadata and controls
110 lines (107 loc) · 4.61 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mila's personal web page</title>
<link rel="stylesheet" href="src/style/style.css">
</head>
<body>
<div class="container-webPage">
<div id="body_content">
<header>
<div id="navmenu" >
<ul>
<li><a href="index.html"><span>Home</span></a></li>
<li><a href="src/aboutMe.html"><span>About Me</span></a></li>
<li><a href="src/travel.html"><span>Travel</span></a></li>
<li><a href="src/hobbies.html"><span>Hobbies</span></a></li>
</ul>
</div>
<div class="background_part">
<div id="neon">
<div id="background">
<div class="header-text">
<h1>Hello I am Mila Kirovski</h1>
<h3>Welcome aboard on а journey around my life</h3>
</div>
</div>
</div>
</div>
</header>
<section id="main">
<div class="section">
<div id="section_one_content">
<h1>Welcome to my first personal Web Page</h1>
<p>In this Web Page you get to meet me and discover a little about my life.
I am an adventurous person who loves traveling, studying, playing sports, discovering and trying new things.
</p>
</div>
</div>
<div class="section">
<div id="section_content_second">
<div id="section_two_content">
<div class="box">
<div class="box_content">
<h3>My favourite song</h3>
<img src="img/lonelyNight.jpg" height="200" width="200"/>
<p>A Lonely Night <br>Song by The Weeknd</p>
</div>
</div>
<div class="box">
<div class="box_content">
<h3>My most used app</h3>
<a href="https://open.spotify.com/track/0ifooM33X1iBxVYyOkSbXW" target="_blank"><img src="img/spotify_resized.png" height="228" width="300"/></a>
</div>
</div>
<div class="box">
<div class="box_content">
<h3>my favourite show</h3>
<a href="https://www.imdb.com/title/tt8421350/" target="_blank"><img src="img/Manifest_resized.jpg" height="169" width="300"/></a>
<p>Manifest</p>
</div>
</div>
</div>
<div id="parag">
<p>Some of my favourite things...</p>
</div>
</div>
</div>
<footer>
<div id="content_footer">
<div class="footer_coloms">
<ul id="information">
<h4>Information</h4>
<li><a href="src/aboutMe.html">About Me</a></li>
<li>Terms & Conditions</li>
<li>Blog</li>
</ul>
<ul id="contactMe">
<h4>Contact me</h4>
<li><a href="mailto:kirovski.mila@gmail.com">Mail</a></li>
<li><a href="https://github.com/milaKirovski">GitHub</a></li> <!-- TODO-->
<li><a href="https://www.linkedin.com/">Linkedin</a></li>
<li><a href="https://www.instagram.com/mila.kirovski/">Instagram</a></li> <!-- TODO-->
</ul>
<ul id="extras">
<h4>Extras</h4>
<li><a href="https://orcenikolov.edu.mk/"> Orce Nikolov High school </a></li>
<li><a href="https://www.finki.ukim.mk/">FINKI</a></li>
</ul>
<ul>
<h4>Email me </h4>
<form>
<input type="email" name="email-address" placeholder="Enter your e-mail">
<button>Send</button>
</form>
</ul>
</div>
<div id="copy">
<p>© kirovski.mila@gmail.com - all rights reserved </p>
</div>
</div>
</footer>
</section>
</div>
</div>
</body>
</html>