-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgeneraltopic.html
144 lines (115 loc) · 2.99 KB
/
generaltopic.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>General Topics - EasyShop</title>
<style>
body {
font-family: 'Trebuchet MS', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
padding: 20px;
}
h1,
h2,
h3 {
color: #333;
}
.header {
background-color: #ffcc00;
padding: 20px;
text-align: center;
border-bottom: 2px solid #000;
}
.content {
padding: 20px;
display: flex;
justify-content: space-between;
flex-grow: 1;
}
.forum {
flex: 1;
margin-right: 20px;
}
.topics {
background-color: #fff;
padding: 15px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.topic {
margin-bottom: 20px;
}
.topic-description {
margin-bottom: 10px;
}
.view-btn,
.create-btn {
background-color: #333;
color: #fff;
padding: 10px;
text-decoration: none;
border-radius: 5px;
display: inline-block;
}
.view-btn:hover,
.create-btn:hover {
background-color: #555;
}
.additional-links {
width: 25%;
padding-left: 15px;
}
.line {
border-top: 1px solid #000000;
margin: 20px 0;
}
.copyright {
background-color: #f0f0f0;
padding: 15px;
text-align: center;
border-top: 2px solid #000;
}
.highlight {
color: #ffcc00;
font-weight: bold;
}
.create-btn {
float: right;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1 class="highlight">EasyShop</h1>
<p>Your one-stop shop for all your needs!</p>
</div>
<div class="line"></div>
<div class="content">
<div class="forum">
<h2 class="highlight">General Topics</h2>
<!-- Add your topics content here -->
<div class="create-btn-container">
<a class="create-btn" href="createtopic.html">Create Topic</a>
</div>
</div>
<div class="additional-links">
</div>
</div>
<div class="line"></div>
<div class="copyright">
© 2024 EasyShop.com. All Rights Reserved.
</div>
</div>
</body>
</html>