forked from giotsere/minimalist-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (43 loc) · 2.1 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
<!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 rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Giorgi Tsereteli</title>
</head>
<body>
<div class="grid-2">
<div class="section-1">
<i class="fas fa-code fa-5x white"></i>
<h2 class="text">FirstName LastName</h2>
<p class="text">City,Country.</p>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-github"></i></a>
</div>
<p> Hello world
</p>
<div class="section-2">
<h2 class="text">About</h2>
<p class="text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis quas sint et nihil iusto eius nostrum sit error, repellat optio quisquam! Magnam dolore iusto cumque. Nostrum error iste neque maiores.</p>
<h2 class="text">Experience</h2>
<p class="text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis in maiores autem quidem
<h2 class="text">Skills</h2>
<p class="text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis in maiores autem quidem obcaecati excepturi! Cupiditate eaque itaque magni voluptatibus neque nobis est dolor? Atque sunt minus ipsa asperiores. At.</p>
<h2 class="text">Projects</h2>
<a href="#">Project 1</a>
<a href="#">Project 2</a>
<a href="#">Project 3</a>
<a href="#">Project 4</a>
<a href="#">Project 5</a>
<h2 class="text">Contact</h2>
<p class="text">[email protected]</p>
</div>
</div>
<hr>
</body>
</html>