-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (40 loc) · 996 Bytes
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Student Bio</title>
<!-- CSS -->
<style type="text/css">
h1 {
background-color: black;
color: white;
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
font-size: 26px;
}
body {
font-family: Arial;
background-color: lightgray;
}
img {
border: 2px solid black;
}
a {
color: red;
}
</style>
</head>
<body>
<h1>Student Bio</h1>
<h2>Juan Carlos Gonzalez</h2>
<img src="http://24.media.tumblr.com/36c8b4938e5c882f991dd9770ba9cad5/tumblr_mpt218xRsX1qiz3j8o1_500.gif" width="300">
<p>This is a short paragraph with a description about me</p>
<h3>Contact Info</h3>
<ul>
<li> <b>Email:</b> <a href="mailto:[email protected]">[email protected]</a> </li>
<li><b>Github:</b> <a href="https://github.com/JaySeeCode" target="_blank">JaySeeCode</a> </li>
<li><b>Portfolio:</b> <a href="#">Coming Soon</a> </li>
</ul>
</body>
</html>