-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
146 lines (127 loc) · 2.88 KB
/
dashboard.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
<!DOCTYPE html>
<html>
<head>
<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;
}
.post {
margin-bottom: 20px;
}
.post-title {
font-size: 18px;
}
.post-body {
font-size: 16px;
}
.post-comments {
margin-top: 20px;
}
.post-comment {
margin-bottom: 10px;
}
.post-comment-author {
font-weight: bold;
}
.post-comment-body {
}
</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>
<nav>
<hr>
<a href="#">Dashboard</a>
</hr>
<hr>
<a href="#">Products</a>
</hr>
<hr>
<a href="#">Services</a>
</hr>
<hr>
<a href="#">About</a>
</hr>
<hr>
<a href="#">Contact</a>
</hr>
</nav>
<h1>E-commerce Social Media Webapp</h1>
<div class="post">
<h2 class="post-title">This is a post</h2>
<p class="post-body">This is the body of the post.</p>
<div class="post-comments">
<h3>Comments</h3>
<div class="post-comment">
<p class="post-comment-author">Hyper</p>
<p class="post-comment-body">This is a comment.</p>
</div>
<div class="post-comment">
<p class="post-comment-author">Richmond</p>
<p class="post-comment-body">This is another comment.</p>
</div>
</div>
</div>
<h2>Other User Profile Posts</h2>
<div class="post">
<h2 class="post-title">This is a post from another user</h2>
<p class="post-body">This is the body of the post from another user.</p>
<div class="post-comments">
<h3>Comments</h3>
<div class="post-comment">
<p class="post-comment-author">Hyper</p>
<p class="post-comment-body">This is a comment on a post from another user.</p>
</div>
</div>
</div>
<h2>See Other Profile Uploads</h2>
<div class="post">
<h2 class="post-title">This is an upload from another user</h2>
<img src="https://example.com/image.jpg" alt="This is an image uploaded by another user">
</div>
<div class="bottom-right-buttons">
<a href="#" class="logout-button">Logout</a>
<a href="#" class="help">Help</a>
<a href="#" class="contact-travel-agency">Contact Travel Agency</a>
<a href="#" class="notifications">Notifications</a>
<a href="#" class="benefits">Benefits</a>
<a href="#" class="live">Live</a>
<a href="#" class="mtn-and-orange-momo-payments">MTN and Orange Momo Payments</a>
<a href="#" class="terms-and-privacy">Terms and Privacy</a>
<a href="#" class="change-color-theme">Change Color Theme</a>
<a href="#" class="chat">Chat</a>
<a href="#" class="search">Search</a>
<a href="#" class="menu">Menu</a>
<a href="#" class="sms">SMS</a>
</div>
</body>
</html>