-
Notifications
You must be signed in to change notification settings - Fork 0
/
task.html
46 lines (34 loc) · 1.14 KB
/
task.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1 style="color: whitesmoke; background-color: purple; font-family: 'Times New Roman', Times, serif;">Welcome to Ray's Fashion House</h1>
<h2 style="color: whitesmoke; font-family: 'Times New Roman', Times, serif;">Below is a brief history of the brand</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Corporis, autem.</p>
<table>
<tr>
<th>Items</th>
<th>Prices</th>
<tr>
<td><img src="/" Knee-length Blazer</td>
<td>£450</td>
<tr>
<td>Backless Dress</td>
<td>£1500</td>
<tr>
<td>Suit</td>
<td>£1000</td>
<tr>
<td>Shirt dress</td>
<td>£200</td>
<style>table, th, td {
border: 1px solid black;
border-collapse: collapse;
}</style>
</tr>
</table>
</body>