-
Notifications
You must be signed in to change notification settings - Fork 23
/
preethi.html
41 lines (41 loc) · 969 Bytes
/
preethi.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
<!DOCTYPE html>
<head>
<title>Hacktoberfest</title>
<style>
header,footer{
width: 1350px;
height: 100px;
background-color:pink;
text-align: center;
}
header{
padding-top: 10px;
}
section{
width: 1350px;
height: 350px;
background-color: black;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 250px;
height: 250px;
}
</style>
</head>
<body>
<header>
<h1 >Hacktoberfest</h1>
</header>
<section>
<h1 style="color: blanchedalmond; text-align: center;">I'm Preethi</h1>
<img src="https://avatars3.githubusercontent.com/u/67089243?s=460&v=4" alt="profile_picture" class="center">
</section>
<footer>
<h1>Find Me</h1>
<a href="https://github.com/preethi-s08" target="_blank">Click Here</a>
</footer>
</body>
</html>