-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyprofile.html
62 lines (61 loc) · 1.38 KB
/
myprofile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="myprofile.css">
</head>
<body>
<main>
<h1>My Profile:</h1>
<div class="maincontent">
<div class="text">
<div>
<h3>NAME:</h3>
<h4>Dmytro</h4>
</div>
<div>
<h3>SURNAME:</h3>
<h4>Korshun</h4>
</div>
<div>
<h3>COUNTRY:</h3>
<h4>Ukraine</h4>
</div>
<div>
<h3>CITY:</h3>
<h4>Kyiv</h4>
</div>
<div>
<h3>DATE OF BIRTH:</h3>
<h4>03.12.1991</h4>
</div>
<div>
<h3>PHONE:</h3>
<h4>38(999)888-77-66</h4>
</div>
<div>
<h3>EMAIL:</h3>
<h4>[email protected]</h4>
</div>
<div>
<h3>MY SKILLS:</h3>
</div>
<div class="skills">
<ul>
<li><img src="./Logos2/icons8-css-50 (2).png"></img></li>
<li><img src="./Logos2/icons8-html-50.png"></img></li>
<li><img src="./Logos2/icons8-javascript-50.png"></img></li>
<li><img src="./Logos2/icons8-adobe-illustrator-50.png"></img></li>
<li><img src="./Logos2/icons8-photoshop-50.png"></img></li>
</ul>
</div>
</div>
<div class="portfolioimg">
<img src="./Images/2973676757_preview_efafef612c1f0e47d1e1a949d9835ab7.jpg">
</div>
</div>
</main>
</body>
</html>