generated from h5bp/html5-boilerplate-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
35 lines (34 loc) · 827 Bytes
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<div class="fixed-header">
<h1>About Me</h1>
</div><
<p>I'm Summer, a Jigglypuff.</p>
<br>
<img src="img/jigglypuff.jpeg" alt="Jigglypuff!"><br>
</div>
<h3><a href="index.html">Back to Home</a></h3>
</body>
</html>