-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (115 loc) · 4.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>personal portfolio</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous" />
</head>
<body>
<nav id="navbar">
<a class="nav-link" href="#welcome-section">About</a>
<a class="nav-link" href="#projects-section">Work</a>
<a class="nav-link" href="#go-to-contact">Contact</a>
</nav>
<section id="contact">
<h1>Let's work together...</h1>
<div class="logos">
<a id="profile-link" target="_blank" href="https://github.com/diana389/">
<i class="fab fa-github">GitHub</i>
</a>
<a id="profile-link" target="_blank" href="https://www.linkedin.com/in/diana-maria-%C8%99tefan-3874bb243/">
<i class="fab fa-linkedin">LinkedIn</i>
</a>
<a id="profile-link" target="_blank" href="https://www.facebook.com/diana.stefan.5682/">
<i class="fab fa-facebook">Facebook</i>
</a>
<a id="profile-link" target="_blank" href="https://www.instagram.com/diana_stefan.867/">
<i class="fab fa-instagram">Instagram</i>
</a>
</div>
</section>
<section id="welcome-section">
<div id="text">
<h1>Hey, I am Diana :)</h1>
<h2>-a computer science student-</h2>
<a href="#projects-section">SCROLL FOR MORE</a>
</div>
<img
src="https://github.com/diana389/personal_portfolio/blob/main/poza%20profil.jpeg?raw=true"
alt="profile picture">
</section>
<section id="projects-section">
<h1>These are some of my projects</h1>
<div id="projects">
<div class="project-tile">
<a href="https://diana389.github.io/save_a_turtle/" target="_blank" class="project-img">
<img class="project-image"
src="https://github.com/diana389/personal_portfolio/blob/main/Screenshot%202022-09-30%20142844.png?raw=true"
alt="project">
<p class="project-title">
<span class="code"><</span>
Syrvey Form
<span class="code">/></span>
</p>
</a>
</div>
<div class="project-tile">
<a href="https://diana389.github.io/python_documentation/" target="_blank" class="project-img">
<img class="project-image"
src="https://github.com/diana389/personal_portfolio/blob/main/Screenshot%202022-09-30%20143105.png?raw=true"
alt="project">
<p class="project-title">
<span class="code"><</span>
Technical Documentation Page
<span class="code">/></span>
</p>
</a>
</div>
<div class="project-tile">
<a href="https://diana389.github.io/princess_diana/" target="_blank" class="project-img">
<img class="project-image"
src="https://github.com/diana389/personal_portfolio/blob/main/Screenshot%202022-09-30%20143151.png?raw=true"
alt="project">
<p class="project-title">
<span class="code"><</span>
Tribute Page
<span class="code">/></span>
</p>
</a>
</div>
<div class="project-tile">
<a href="https://diana389.github.io/headphones-landing-page/" target="_blank" class="project-img">
<img class="project-image"
src="https://github.com/diana389/personal_portfolio/blob/main/Screenshot%202022-09-30%20143319.png?raw=true"
alt="project">
<p class="project-title">
<span class="code"><</span>
Product Landing Page
<span class="code">/></span>
</p>
</a>
</div>
<div class="project-tile">
<a href="https://diana389.github.io/penguin/" target="_blank" class="project-img">
<img class="project-image"
src="https://github.com/diana389/personal_portfolio/blob/main/Screenshot%202022-09-30%20143355.png?raw=true"
alt="project">
<p class="project-title">
<span class="code"><</span>
Animation
<span class="code">/></span>
</p>
</a>
</div>
</div>
</section>
<div id="go-to-contact"></div>
<section id="footer">
<p>You can also find me at <i>[email protected]</i>.</p>
</section>
</body>
</html>