-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (36 loc) · 824 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My webpages</title>
<style>
body{
background-color: white;
text-align: center;
margin-left: 20%;
margin-right: 20%;
}
a{
padding-right: 5%;
text-align: center;
}
button{
color: black;
background-color: grey;
}
h2 {
text-align: center;
}
p{
text-align: center;
}
</style>
</head>
<body>
<h2>My webpages</h2>
<p>Click on the links below to view the webpages I have created with and without any framework.</p>
<hr>
<a href = "webpages/index.html"><button> My first webpage </button></a>
<a href = "webpages/index-grid.html"><button> My second webpage </button></a>
</body>
</html>