-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
37 lines (27 loc) · 842 Bytes
/
demo.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
<!DOCTYPE html>
<html>
<head>
<title> Bio</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Student Bio</h1>
</header>
<div class="container">
<section id="main-bio">
<h2>Sergey Shcherbakov </h2>
<img width="15%" height="15%" src="Images/IMG_5137.PNG" alt="Sergey Shcherbakov" id="bio-image">
<p> I was born and raised in Russia, Sochi where Olympic Games took place in 2014</p>
</section>
<section id="contact-info">
<h2>Contact Info</h2>
<ul>
<li><strong>Email:</strong> <a href="[email protected]">[email protected]</a></li>
<li> <strong>Github::</strong> <a href="#">sampleName</a></li>
<li> <strong>Portfolio:</strong> <a href="#">coming soon</a></li>
</ul>
</section>
</div>
</body>
</html>