-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMusic.html
67 lines (63 loc) · 1.46 KB
/
Music.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" style.css="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html"> Home </a></li>
<li></li>
<li><a href="Food.html"> Food </a></li>
<li></li>
<li><a href="Attraction.html"> Attraction </a></li>
<li></li>
<li><a href="Music.html"> Music </a></li>
<li></li>
</ul>
</nav>
</header>
<table>
<tr>
<th>Artist</th>
<th>Song</th>
<th>Year</th>
</tr>
<tr>
<td>Umm kulthum</td>
<td>El Atlal</td>
<td>1966</td>
</tr>
<tr>
<td>Abdel halim hafez</td>
<td>Ahwak</td>
<td>1953</td>
</tr>
</table>
<img
style="width: 20%"
src="https://cdn.britannica.com/74/203374-050-3A9D2691/Umm-Kulthum-1967.jpg"
/>
<img
style="width: 20%"
src="https://upload.wikimedia.org/wikipedia/commons/8/8d/Abdel_Halim_Hafez.jpg"
/>
</body>
</html>
<style>
table {
font-family: arial, sans-serif;
width: 100%;
}
td,
th {
/* border: 1px solid #4a4a4a; */
text-align: left;
padding: 8px;
background-color: rgb(251, 200, 155);
}
</style>