-
Notifications
You must be signed in to change notification settings - Fork 0
/
detail.html
50 lines (49 loc) · 1.26 KB
/
detail.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<header>
<h1>School set</h1>
<p>Buy what you want!</p>
<nav>
<a href="./index.html#prod-list">Product List</a>
<a href="./index.html#register">Register</a>
</nav>
</header>
<main>
<h2>School set</h2>
<ul>
<li>
<article>
<header>
<h3>Pen</h3>
<p>Write as a Pro</p>
</header>
<img src="https://i.picsum.photos/id/506/200/300.jpg?hmac=TffVHN_4qC2LKDH1XPGVHEGIO-hOM2Sc11zE-tfc4Po"
alt="Pen image">
<ul>
<li><p>Color: red</p></li>
<li><p>Length: 7.3 cm</p></li>
</ul>
</article>
</li>
<li>
<article>
<header>
<h3>School back</h3>
<p>Hurt your back!</p>
</header>
<img src="broken-image-url" alt="Pen image">
<ul>
<li><p>Color: black</p></li>
<li><p>Volume: 5 L</p></li>
</ul>
</article>
</li>
</ul>
</main>
</body>
</html>