File size: 1,372 Bytes
cf1fb4e
 
 
 
 
 
 
 
 
 
 
22b94f1
cf1fb4e
 
 
 
 
22b94f1
6d3200c
cf1fb4e
 
 
 
 
 
 
 
 
22b94f1
cf1fb4e
 
 
 
22b94f1
cf1fb4e
 
 
 
 
 
 
 
22b94f1
cf1fb4e
 
 
ffd464c
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>News Feed Hub</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f5f5f5; /* Light grey background from screenshot */
            color: #333;
        }
        h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 2em;
        }
        .search-container {
            text-align: center;
            margin: 20px 0;
        }
        .search-bar {
            width: 50%;
            padding: 12px;
            font-size: 16px;
            border: 2px solid #3498db; /* Blue from screenshot */
            border-radius: 25px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            outline: none;
            transition: border-color 0.3s;
            background-color: white;
        }
        .search-bar:focus {
            border-color: #2980b9;
        }
        .category-section {
            margin: 30px 0;
        }
        .category-title {
            background-color: #3498db; /* Blue header from screenshot */
            color: white;
            padding: 10px;
            border-radius: 5px;
            font-size: