-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyBookPage.html
90 lines (61 loc) · 2.66 KB
/
MyBookPage.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!-- Name: Moaid Ali Alsharmani
ID: 2143005
Section: CS1
Date= 9/25/2024
-->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="Styles_MyBookPage.css">
<title> My Book - Page </title>
<div class = "heading">
<h2 style="margin-left: 20px; font-family: 'Arial', sans-serif;"><a href="index.html"> LitSwap </a></h2>
<div class="profile">
<h3 style="margin-right: 10px;">Profile</h3>
<img src="Profile.png" alt="Profile Image" class ="image_for_profile">
</div>
</div>
<hr>
<div class = "tools">
<p> <a href="MyBookPage.html"> My Book </a> | <a href="TradingPage.html"> Trading </a> | log out | <a href = "ContactPage.html">Contact us </a> </p>
</div>
</head>
<body>
<div class="square">
<h2> Instructions for adding book </h2>
<ol>
<li> Write the name of the book </li>
<li> Add a picture of the book </li>
<li> Submit </li>
</ol>
<div><input type="text" id="add" placeholder=" Write the name of the book " class="field-input"> <button> + </button> </div>
<button style="width: 60px;"> Submit </button>
</div>
<hr>
<br />
<span style="font-size: 34px; margin-left: 20px;"> <b> List my books </b></span>
<div class="square_images">
<div class="image_items">
<img src="Books.png" class="images" alt="Books Images">
<p class="image_details"> Book:moaid <br/> <br/> Moaid55 <br/> <br/>Location: Jeddah </p>
<button class="image-button">Remove</button>
</div>
<div class="image_items">
<img src="Books.png" class="images" alt="Books Images">
<p class="image_details"> Book:moaid <br/> <br/> Ahmed55 <br/> <br/>Location: Jeddah </p>
<button class="image-button">Remove</button>
</div>
<div class="image_items">
<img src="Books.png" class="images" alt="Books Images">
<p class="image_details"> Book:moaid <br/> <br/> Mohammed55<br/> <br/>Location: Jeddah </p>
<button class="image-button">Remove</button>
</div>
<div class="image_items">
<img src="Books.png" class="images" alt="Books Images">
<p class="image_details"> Book:moaid <br/> <br/> Ali123<br/> <br/>Location: Jeddah </p>
<button class="image-button">Remove</button>
</div>
</div>
<p style="text-align: center;">© 2024 Moaid Ali Alshamrani. All rights reserverd </p>
</body>
</html>