-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (35 loc) · 971 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>
Caesar.com
</title>
<style>
.thumbnail {
width: 240px;
}
button {
background-color: rgb(201, 2, 2);
font-size: large;
color: white;
font-weight: bold;
border: none;
height: 36px;
width: 125px;
border-radius: 2px ;
cursor: pointer;
}
</style>
</head>
<body>
<img class="thumbnail" src="img/Samurai.webp">
<button>
SUBSCRIBE
</button>
<button>Hello</button>
<p>paragraph of text</p>
<a href="https://www.google.com/search?q=samurai+x&client=firefox-b-d&sxsrf=ALiCzsYc2y4Q4vMttjGxkxkeeHWGKeEAJw:1670414045967&source=lnms&tbm=isch&sa=X&ved=2ahUKEwiNjtmeuef7AhVJl2oFHcZzCXwQ_AUoAXoECAIQAw&biw=1096&bih=799&dpr=1/" target="_blank">
Link to Samurai X
</a>
</body>
</html>