-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
127 lines (103 loc) · 2.89 KB
/
homepage.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<html>
<style>
#btn {
padding: 10;
height: 20;
width: 20;
}
.btn {
display: flex;
flex-direction: row;
width: auto;
}
.header {
background-color: white;
display: flex;
flex-direction: row;
justify-content: space-around;
width: 100%;
}
.welcome {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.welcome-again {
width: 700px;
height: 50px;
text-align: center;
font-size: 20;
font-weight: bolder;
display: flex;
justify-content: center;
font-family: Impact;
}
h1 {
font-size: 15px;
color: dimgrey;
}
a {
color: black;
text-decoration: none;
}
a:hover {
text-decoration: underline;
text-decoration-color: darkgrey;
cursor: pointer;
}
body{
margin: 0;
background-image: url("33.jpg");
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
font-family: sans-serif;
}
.buttons{
margin: 70px;
margin-top: 500px;
width: 100px;
}
</style>
<head>
</head>
<body>
<div class="header">
<a href="WEBPRG%20MP.html">
<div class="btn">
<div>
<img id="btn" src="posts.png"/>
</div>
<div style = "padding: 2.4;">
<h1> Timeline </h1>
</div>
</div>
</a>
<a href="homepage.html">
<div class="btn">
<div style = "padding: 2.4;">
<h1> Fishbook </h1>
</div>
</div>
</a>
<a href="AllPhotos.html">
<div class="btn">
<div>
<img id="btn" src="planet.png"/>
</div>
<div style = "padding: 2.4;">
<h1> Explore </h1>
</div>
</div>
</a>
</div>
<div class="welcome">
<div class="welcome-again">
<h2> Welcome to Fishbook! </h2>
</div>
</div>
</div>
</body>
</html>