Skip to content

Commit 7cbaaf9

Browse files
committed
A new official version has been added to the project as a seperate file.
1 parent 986aa19 commit 7cbaaf9

File tree

2 files changed

+80
-0
lines changed

2 files changed

+80
-0
lines changed

css/style.css

Whitespace-only changes.
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Student Bio</title>
5+
6+
<!-- 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. -->
7+
<link rel="stylesheet" type="text/css" href="css/style.css">
8+
9+
10+
11+
</head>
12+
<body>
13+
14+
15+
16+
<div id = "leftContainer">
17+
18+
<h1>STUDENT BIO</h1>
19+
20+
<h2>Hasan Mustafa</h2>
21+
22+
<img src="https://i.ytimg.com/vi/XIMLoLxmTDw/hqdefault.jpg">
23+
24+
<p>My name is Hasan Mustafa. I am a student of the SMU Coding Bootcamp. I am currently doing an HTML assignment.</p>
25+
26+
</div>
27+
28+
29+
<div id = "rightContainer"
30+
<h2>Contact Info</h2>
31+
32+
<h4>Email: <a href="">hmust92@gmail.com</a></h4>
33+
<h4>Github: <a href="https://github.com/hmust92">hmust92</a></h4>
34+
<h4>Portfolio: <a href="">coming soon</a></h4>
35+
36+
</div>
37+
38+
39+
<style>
40+
41+
body{
42+
43+
background-color: cornsilk;
44+
}
45+
46+
47+
#leftContainer{
48+
49+
float: left;
50+
width: 70%;
51+
}
52+
53+
54+
#rightContainer{
55+
56+
float: right;
57+
width: 30%;
58+
59+
60+
}
61+
62+
63+
64+
h1{
65+
66+
color: white;
67+
background-color: green;
68+
text-align: center;
69+
70+
71+
}
72+
73+
74+
75+
76+
</style>
77+
78+
79+
</body>
80+
</html>

0 commit comments

Comments
 (0)