-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout_me.html
75 lines (63 loc) · 1.75 KB
/
About_me.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<html>
<head>
<style>
.flex-container1 {
display: flex;
justify-content: center;
/* margin-left: 43pc; */
}
.flex-container1>div {
margin-left: 2pc;
padding: 15px;
}
body {
background-color: black;
}
p {
font-style: italic;
color: white;
font-family: 'Courier New', Courier, monospace;
}
h1 {
color: white;
font-family: cursive;
}
.button {
background-color: black;
color: white;
transition-duration: 0.6s;
font-size: 14px;
border-radius: 12px;
padding: 10px 7px;
font-style: italic;
width: 100px;
height: 50px;
}
.button:hover {
background-color: gray;
}
</style>
</head>
<body>
<div class="flex-container1">
<div>
<a href="index.html "><button type="button" class="button">Home</button></a>
</div>
<div>
<a href="skills.html "><button type="button" class="button">Skills</button></a>
</div>
<div>
<a href="projects.html"><button type="button" class="button">Projects</button></a>
</div>
<div>
<a href="About_me.html "><button type="button" class="button">About Me</button></a>
</div>
</div>
<center>
<h1>About Me 😁</h1>
<p>
me sachin mero and i go by the name "papa belt se mt maaro"
</p>
</center>
</body>
</html>