-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
162 lines (153 loc) · 3.74 KB
/
products.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>E-commerce Social Media Webapp</title>
<style>
body {
background-color: white;
}
nav {
position: fixed;
right: 0;
top: 0;
width: 200px;
background-color: purple;
padding: 10px;
}
nav a {
color: lemon-green;
text-decoration: none;
}
nav a:hover {
color: white;
}
</style>
</head>
<body>
<style>
.logo {
width: 100px;
height: 100px;
border-radius: 50%;
background-color: purple;
color: lemon green;
text-align: center;
font-size: 20px;
}
</style>
<div class="logo">
<span>Richmond</span>
<span>CFA</span>
<div style="position:relative; left:150px; bottom:50px;">
<img src="buy-logo.png" alt="My Website Logo" />
</div>
<nav>
<hr>
<a href="dashboard2.html">Dashboard</a>
</hr>
<hr>
<a href="products.html">Products</a>
</hr>
<hr>
<a href="#">Services</a>
</hr>
<hr>
<a href="#">About</a>
</hr>
<hr>
<a href="contact-travel-agency.html">Contact</a>
</hr>
</nav>
<h1>E-commerce Social Media Webapp</h1>
<div class="photo-uploads">
<h2>Photo Uploads</h2>
<ul>
<li>
<img src="https://picsum.photos/200/200" alt="Photo upload 1">
<p>This is the first photo upload.</p>
</li>
</ul>
</div>
<div class="profile-uploads">
<h2>Profile Uploads</h2>
<ul>
<li>
<img src="https://picsum.photos/200/200" alt="Profile upload 1">
<p>This is the second profile upload.</p>
</li>
<li>
<img src="https://picsum.photos/200/200" alt="Profile upload 2">
<p>This is the third profile upload.</p>
</li>
<li>
<img src="https://picsum.photos/200/200" alt="Profile upload 3">
<p>This is the Fourth profile upload.</p>
</li>
</ul>
</div>
<div class="chart">
<h2>Profile Uploads by Month</h2>
<canvas id="chart"></canvas>
</div>
<div class="photo-uploads">
<h2>Photo Uploads</h2>
<ul>
<li>
<img src="https://picsum.photos/200/200" alt="Photo upload 1">
<p>This is the first photo upload.</p>
</li>
</ul>
</div>
<script>
const ctx = document.getElementById("chart").getContext("2d");
const chart = new Chart(ctx, {
type: "line",
data: {
labels: ["January", "February", "March", "April", "May", "June", "July"],
datasets: [
{
label: "Profile Uploads",
data: [10, 20, 30, 40, 50, 60, 70],
fill: false,
lineTension: 0.1,
},
],
},
options: {
title: {
text: "Profile Uploads by Month",
display: true,
},
tooltips: {
enabled: true,
},
},
});
</script>
<div class="bottom-right-buttons">
<a href="#" class="logout-button">Logout</a>
<a href="help.html" class="help">Help</a>
<a href="contact-travel-agency-via-phone-or-email.html" class="contact-travel-agency">Contact Travel Agency</a>
<a href="notifications.html" class="notifications">Notifications</a>
<a href="Benefits.html" class="benefits">Benefits</a>
<a href="LIVE.html" class="live">Live</a>
<a href="MTN-and-Orange-Momo-Payment-Services.html" class="mtn-and-orange-momo-payments">MTN and Orange Momo Payments</a>
<a href="Terms-And-Privacy.html" class="terms-and-privacy">Terms and Privacy</a>
<a href="change-color-theme.html" class="change-color-theme">Change Color Theme</a>
<a href="chat.html" class="chat">Chat</a>
<a href="search-bar,-menu-tab,-and-SMS-tab.html" class="search">Search</a>
<a href="search-bar,-menu-tab,-and-SMS-tab.html" class="menu">Menu</a>
<a href="search-bar,-menu-tab,-and-SMS-tab.html" class="sms">SMS</a>
</div>
<!--<div class="photo-uploads">
<h2>Photo Uploads</h2>
<ul>
<li>
<img src="https://picsum.photos/200/200" alt="Photo upload 1">
<p>This is the first photo upload.</p>
</li>
</ul>
</div>-->
</body>
</html>