-
Notifications
You must be signed in to change notification settings - Fork 0
/
search-bar,-menu-tab,-and-SMS-tab.html
139 lines (121 loc) · 3.06 KB
/
search-bar,-menu-tab,-and-SMS-tab.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
<!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;
}
.search-bar {
width: 200px;
margin: 10px 0;
}
.search-bar input {
width: 100%;
height: 30px;
padding: 5px;
border: 1px solid black;
}
.search-bar button {
width: 30px;
height: 30px;
background-color: black;
color: white;
border: none;
cursor: pointer;
}
.sms-tab {
background-color: green;
color: white;
padding: 10px;
margin: 10px 0;
text-align: center;
}
.sms-tab a {
color: white;
text-decoration: none;
}
.sms-tab a:hover {
color: black;
}
</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</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>
<p>This is a web application that combines the features of an e-commerce platform with those of a social media platform. This allows users to shop for products and services, connect with other users, and share product reviews and recommendations.</p>
<p>To learn more about the features of this web application, please visit our <a href="#">website</a>.</p>
<div class="search-bar">
<input type="text" placeholder="Search for friends, family, pages, groups...">
<button>Search</button>
</div>
<div class="sms-tab">
<a href="#">Send SMS</a>
<a href="#">Receive SMS</a>
</div>
<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>
</body>
</html>