-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (53 loc) · 2.01 KB
/
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<script src="script.js"></script>
<h1> My Shop </h1>
<p> Welcome to my shop! This shop is all about selling fun, exciting, and helpful products
at a reasonable price!</p>
<div id='picture'> <img src="basketball.jfif" width=150px>
<div id='description'> <p> This is a professional basketball hand-crafted by thd world's
finest designers. Behold the smooth orange color. Glance at the gorgeous black lines. And finally,
image the wonderful grip. Trust me, this improved by game - and it will improve yours!</p></div>
</div>
<div id="reviews">
<div id='review'>
<h4 id='name'> Michael Jordan</h4>
<p id='content'> This basketball had amazing grip! 10/10 </p>
</div>
<div id='review'>
<h4 id='name'> Lebron James</h4>
<p id='content'> The basketball looks amazing! Great job! 10/10 </p>
</div>
<div id='review'>
<h4 id='name'> Kawhi Leaonard</h4>
<p id='content'> Eh. Its okay </p>
</div>
<div id='review'>
<h4 id='name'> Steph Curry</h4>
<p id='content'> This thing is perfect! </p>
</div>
<div id='review'>
<h4 id='name'> Chris Paul </h4>
<p id='content'> 3 months about getting this ball, my ball handling skills are fantastic. Thank you! </p>
</div>
<div id='review'>
<h4 id='name'> Ja Morant </h4>
<p id='content'> This thing is dope! </p>
</div>
</div>
</div>
<!--
This script places a badge on your repl's full-browser view back to your repl's cover
page. Try various colors for the theme: dark, light, red, orange, yellow, lime, green,
teal, blue, blurple, magenta, pink!
-->
<script src="https://replit.com/public/js/replit-badge.js" theme="blue" defer></script>
</body>
</html>