forked from acmucsd/TritonHacks-Intro-to-HTML-and-CSS-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
37 lines (37 loc) · 931 Bytes
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1 class="title">Favorite Song</h1>
<h1>Name</h1>
<img src="rick.png" ><img>
<iframe
style="border-radius:12px"
src="https://open.spotify.com/embed/track/4cOdK2wGLETKBW3PvgPWqT?utm_source=generator"
width="100%"
height="380"
frameBorder="0"
allowfullscreen=""
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture">
</iframe>
<div class="item-box">
Hello this is some text.
<ul>
<li class="item">
item
</li>
<li class="item">
item
</li>
<li class="item">
item
</li>
<li class="item">
item
</li>
</ul>
</div>
</body>
</html>