-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 882 Bytes
/
index.html
File metadata and controls
41 lines (38 loc) · 882 Bytes
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
<html>
<head>
<title>Valentin's HomePage</title>
<style>
body
{
background-color:lightgreen;
}
ul li
{
display:inline;
margin-left:10px;
}
.container
{
background-color:white;
margin-top:30px;
margin-bottom:30px;
margin-left:30px;
margin-right:30px;
}
</style>
</head>
<body>
<ul>
<li>Project</li>
<li>Resume</li>
<li>About Me</li>
</ul>
<div class="container">
<h2>Bio</h2>
<p>I am a Junior at Georgia gwinnett college, majoring in Software development.
</p>
<p>Winter with Snow</p>
<img src="snow.JPG" height="400" weight="400">
</div>
</body>
</html>