-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (82 loc) · 3.73 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="HeaderMain">
<a href="home.html"><img src="img\Name logo.png"></a>
<ul class="HeaderNav">
<a class="active" href="index.html">Home</a>
<a class="active" href="about.html">About</a>
<a class="active" href="portfolio.html">Portfolio</a>
<a class="active" href="contact.html">Contact</a>
<a class="active" href="dog.html">Dog api</a>
<a class="active" href="lift_proj.html">Lift project</a>
</ul>
</header>
<div class="content"> <!-- div-ul care tine toate cardurile -->
<div class="card"> <!-- card 1-->
<header class="container-blue">
<h1>Education</h1>
</header>
<div class="container">
<p> I am a second year student at the <a href="https://acs.pub.ro/en/">Faculty of Automatic Control and Computer Science</a>
located in the <a href="https://upb.ro/en/">University POLITEHNICA of Bucharest</a>. I study as part of the Systems Engineering
curricula.
</p>
<p>
I graduated from <a href="https://cnlazar.ro/">Gheorghe Lazar high school</a> in the field of mathematics and informatics.
</p>
</div>
<div class="container-img">
<img class="cardImg" src="img\\Books-min.jpg" style="margin: 0%;">
</div>
</div>
<div class="card" style="align-self: flex-end;"> <!-- card 2 - aliniat la stanga -->
<div class="container-img">
<img class="cardImg" src="img\\Code-min.jpg" style="margin: 0%;">
</div>
<div class="container">
<ul style="padding: 0;">
<li>C/C++</li>
<li>Python</li>
<li>MatLab</li>
<li>Oracle DB</li>
<li>Linux</li>
</ul>
</div>
<header class="container-blue">
<h1>Competences</h1>
</header>
</div>
<div class="card"> <!-- card 3 -->
<header class="container-blue">
<h1>Hobby</h1>
</header>
<div class="container">
<ul style="padding: 0;">
<li>New tech</li>
<li>Philosophy</li>
<li>Strategy Games</li>
<li>Science Fiction</li>
<li>Football</li>
</ul>
</div>
<div class="container-img">
<img class="cardImg" src="img\\Football-min.jpg" style="margin: 0%;">
</div>
</div>
</div>
<footer style="display: flex; justify-content: space-between;"> <!-- footer cu linkuri -->
<span style="text-align: left;">©Copyright 2022, Căproiu Victor</span>
<span>
<a class="footEl" href="https://www.facebook.com/" target="_blank"><img class="footImg" src="img\\Facebook.png"></a>
<a class="footEl" href="https://twitter.com/" target="_blank"><img class="footImg" src="img\\Twitter.png"></a>
<a class="footEl" href="https://www.linkedin.com/in/c%C4%83proiu-victor-921581223/" target="_blank"><img class="footImg" src="img\\LinkedIn.png"></a>
<a class="footEl" href="mailto:[email protected]" target="_blank"><img class="footImg" src="img\\Email.png"></a>
</span>
</footer>
</body>