-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMAIN_PAGE.html
More file actions
56 lines (56 loc) · 1.66 KB
/
MAIN_PAGE.html
File metadata and controls
56 lines (56 loc) · 1.66 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Main webpage</title>
<style>
body{
background-image: url("logo2.jpeg");
background-repeat: no-repeat;
background-size:cover;
background-attachment:fixed;
}
h1{
text-align: center;
font-family:curlz mt;
font-size:80px;
}
#leftalign{
float: right;
width: 250px;
height: 250px;
object-fit: cover;
border-radius: 50%;
}
#genre{
font-family: curlz mt;
font-size: 70px;
text-align: center;
}
</style>
</head>
<body>
<img src="RYTHMTOPIA.gif">
<table align="right">
<tr>
<td><a href="pop_rock.html">
<img id="leftalign" src="pop-rock.jfif"></a></td>
<td id="genre">POP ROCK</td>
</tr>
<tr>
<td><a href="Disney.html">
<img id="leftalign" src="Disney.jfif"></a></td>
<td id="genre">DISNEY</td>
</tr>
<tr>
<td><a href="BOLLYWOOD.html">
<img id="leftalign" src="bol1.jfif"></a></td>
<td id="genre">BOLLYWOOD</td>
</tr>
<tr>
<td><a href="Instrumental.html">
<img id="leftalign" src="Instumental.jfif"></a></td>
<td id="genre">INSTRUMENTAL</td>
</tr>
</table>
</body>
</html>