-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
48 lines (48 loc) · 2.24 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<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>Portofolio | Furnica Flavius</title>
<link rel="stylesheet" href="css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Changa+One|Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
<meta name="description" content="Beautiful Romania">
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>Furnica Flavius</h1>
<h2>Front-End Developer</h2>
</a>
<nav>
<ul>
<li><a href="index.html" >Home</a></li>
<li><a href="portfolio.html">Portofolio</a></li>
<li><a href="about.html" class="selected">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section id="gallery">
<img src="img/Flavius.jpg" alt="Photograph of Flavius" class="profile-photo">
<h3>About</h3>
<p> Hello!
My name is Flavius.
I'm a Junior Front-End Developer.
Right now my main professional goal is to find a job that will give me an opportunity to deepen and improve my programming skills.
</p>
</section>
<footer>
<a href="https://www.instagram.com/flaviusxsc/"><img src="img/instagram.png" alt="Instagram Logo" class="social-icon grow"></a>
<a href="https://www.linkedin.com/in/flavius-m-furnica/"><img src="img/linkedn.png" alt="Linkedn Logo" class="social-icon grow"></a>
<a href="https://github.com/flaviusxsc"><img src="img/github.png" alt="GitHub Logo" class="social-icon grow"></a>
<p>© 2019 Furnica Flavius.</p>
</footer>
</div>
</body>
</html>