-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (68 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en-gb">
<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">
<title>Kamen Ivanov // Web Developer</title>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<!-- main logo / nav -->
<header>
<h1>Kamen Ivanov - Portfolio</h1>
<nav>
<a href="#about">About me</a>
<a href="#work">Work</a>
<a href="#contact">Contact me</a>
</nav>
</header>
<!-- hero banner -->
<section class="hero-banner">
<div>
<h2>The most keen project manager to become a web developer!</h2>
</div>
</section>
<main class="page-wrapper">
<!-- about me -->
<section class="page-section" id="about">
<h2 class="label">About Me</h2>
<img src="assets/images/avatar.png" width="150px" alt="Kamen avatar">
<p>I'm a project manager who was once a developer and is keen to go back to being a developer</p>
</section>
<!-- portfolio container -->
<section class="page-section" id="work">
<h2 class="label">Work</h2>
<section class="work-content" id="work-content">
<div id="main-work">
<a href="https://ikamen.github.io/best_youtube_channels/" target="_blank">
<img src="assets/images/youtubeproject.png" alt="YouTube project image" width="400px">
</a>
<p>My latest project featuring the best YouTube channels</p>
</div>
<div id="second-work">
<a href="https://ikamen.github.io/week1_challenge/" target="_blank">
<img src="assets/images/cssrefactoring.png" alt="CSS refactoring project" width="200px" height="200px" >
</a>
<p>My project on refactoring CSS</p>
</div>
<div id="third-work">
<a href="https://ikamen.github.io/dev_course_prework_test/" target="_blank">
<img src="assets/images/prep.png" alt="Prep work" width="200px" height="200px">
</a>
<p>My project on preparing for the dev course</p>
</div>
</section>
</section>
<!-- contact -->
<section class="page-section-contact" id="contact">
<h2 class="label" id="contact-label">Contact Me</h2>
<a href="tel:+44 UK mobile number" id="contact-tel">+44 UK mobile number</a>
<a href="mailto:kamen.web.dev@gmail.com" id="contact-email">kamen.web.dev@gmail.com</a>
</section>
</main>
<footer>
©2022
</footer>
</body>
</html>