-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFinalStudentBio.html
57 lines (28 loc) · 1.01 KB
/
FinalStudentBio.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
<!DOCTYPE html>
<html>
<head>
<title>Student Bio</title>
<!-- This line will link the file to the styling css file. Now you are chilling and can style separately and only deal with blocks here. Object oriented. -->
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<h1>Student Bio</h1>
</header>
<div class ="container">
<section id="main-bio">
<h2>Hasan Mustafa</h2>
<img src="https://i.ytimg.com/vi/XIMLoLxmTDw/hqdefault.jpg" alt="Your Name" id="bio-image">
<p>My name is Hasan Mustafa. I am doing an assginment on an upgraded student bio page. I will push this on github once I am done.</p>
</section>
<section id="contact-info">
<h2>Contact info</h2>
<ul>
<li><strong>Email:</strong> <a href="#">hmust92@gmail.com</a> </li>
<li><strong>Github:</strong> <a href="https://github.com/hmust92">hmust92</a></li>
<li><strong>Portfolio</strong> <a href="#">Coming soon</a></li>
</ul>
</section>
</div>
</body>
</html>