-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
50 lines (49 loc) · 1.17 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
<!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">
<link href="https://fonts.googleapis.com/css?family=Oxygen" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<title>Portfolio</title>
</head>
<body>
<header>
<div>
<h1>Portfolio</h1>
<div class="name-container">
<p>Name</p>
<p>Surname</p>
</div>
</div>
<div class="profile">
<img src="./images/default_person.png" alt="person">
<ul>
<li>
<a href="#">Github</a>
</li>
<li>
<a href="#">Facebook</a>
</li>
<li>
<a href="#">LinkedIn</a>
</li>
</ul>
</div>
</header>
<main>
<ul class="project-list">
<li>
<a href="./project/index.html">
<img src="./images/default_project.png" alt="project">
<span>DEFAULT PROJECT</span>
</a>
</li>
</ul>
</main>
<footer>
<span>© Айтиландия 2018</span>
</footer>
</body>
</html>