-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (72 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="My Portfolio">
<meta name="author" content="Dijana Đuran">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="wrapper">
<div class="header">
<div class="header-image">
<img class="profile-image" src="./profile-picture.png" alt="Dijana Đuran">
</div>
<div class="header-description">
<h1>Hi, I'm Dijana!</h1>
<p>Welcome to my portfolio!</p>
<div>
<a class="big" href="https://diiiiiii.github.io/portfolio-website/style-guide.html">My Style Page</a>
</div>
<ul>
<li>
<a href="https://github.com/Diiiiiii" target="_blank">
My GitHub
</a>
</li>
<li>
<a href="mailto:[email protected]">
Send me an email
</a>
</li>
<!-- <li>
And many more!
</li>
<li>
And many more!
</li> -->
</ul>
</div>
</div>
<br><br>
<h2>My projects</h2>
<div class="project-portfolio">
<div class="project-title">
<div class="h6">Frontend Cheat Sheet</div>
</div>
<ul class="project-technology-list">
<li>HTML</li>
<li>CSS</li>
</ul>
<div class="project-description">
<div class="p">This is my first project, a frontend cheat sheet that contains all that I've learned while studying frontend development.</div>
</div>
<a class="project-link" href="#">Check it out!</a>
</div>
<br>
<div class="project-portfolio">
<div class="project-title">
<div class="h6">Frontend Cheat Sheet</div>
</div>
<ul class="project-technology-list">
<li>HTML</li>
<li>CSS</li>
</ul>
<div class="project-description">
<div class="p">This is my first project, a frontend cheat sheet that contains all that I've learned while studying frontend development.</div>
</div>
<a class="project-link" href="#">Check it out!</a>
</div>
</div>
</body>
</html>