forked from coke11/yoshi123
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmenu.html
36 lines (31 loc) · 770 Bytes
/
menu.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
<html>
<head>
<title>Yoshi 123 - Menu</title>
<style>
a{
text-decoration: none;
margin: 5px 15px;
color:darkmagenta
/* border: 2px solid black; */
}
a:hover{
color: blue;
text-decoration: underline;
}
a:active{
color: red;
}
</style>
</head>
<body>
<a href ="https://coke11.github.io/yoshi123/">
Home
<a href ="https://coke11.github.io/yoshi123/videos">
Videos
<a href ="https://coke11.github.io/yoshi123/live-streams">
Live Streams
<a href ="https://www.youtube.com/channel/UCSk7gsduVAKHGKdX6IzMRQQ">
The Channel
</a>
</body>
</html>