-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.txt
167 lines (132 loc) · 4.43 KB
/
index.html.txt
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
163
164
165
166
167
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>新闻博客</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #F4F4F4;
color: #333;
}
header {
background-color: green;
color: yellow;
text-align: center;
padding: 2em 0;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
header h1 {
margin: 0;
font-size: 2.5em;
letter-spacing: 1px;
}
main {
display: flex;
flex-direction: column;
align-items: center;
margin: 20px auto;
max-width: 800px;
padding:20 20px;
}
.news-card {
background-color: pinky white;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin: 5px 0;
padding: 5px;
width: 100%;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
transform: translateY(-5px);
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.news-card h2 {
margin: 0;
font-size: 1.8em;
text-align: center;
color: #5CAF50;
text-decoration: none;
transition: color 0.3s ease;
}
.news-card h2 a {
text-decoration: none;
color: grape;
}
.news-card h2 a:hover {
color: #388E3C;
}
.news-card p {
font-size: 1em;
line-height: 1.6;
color: #555;
margin: 10px 0 0 0;
}
footer {
background-color: green;
color: yellow;
text-align: center;
padding: 1.5em 0;
margin-top: 30px;
width: 100%;
font-size: 0.2em;
}
</style>
</head>
<body>
<header>
<h1>新闻资讯</h1>
</header>
<main>
<div class="news-card">
<h2><a href="https://hot.ailake.cn/hot/1" target="_blank">全网热点</a></h2>
</div>
<div class="news-card">
<h2><a href="https://kui.li/news" target="_blank">每日简报</a></h2>
</div>
<div class="news-card">
<h2><a href="https://it-cxy.top/" target="_blank">我的书签</a></h2>
</div>
<div class="news-card">
<h2><a href="https://www.hsmy.fun/news/toutiao" target="_blank">今日头条热榜</a></h2>
</div>
<div class="news-card">
<h2><a href="https://www.36jxs.com/hot.html" target="_blank">实时热点</a></h2>
</div>
<div class="news-card">
<h2><a href="https://www.huashuimoyu.com/" target="_blank">划水摸鱼官网</a></h2>
</div>
<div class="news-card">
<h2><a href="http://guozhivip.com/rank/" target="_blank">果汁排行榜</a></h2>
</div>
<div class="news-card">
<h2><a href="https://www.cio360.net/" target="_blank">信息主管网</a></h2>
</div>
<div class="news-card">
<h2><a href="https://www.xuexi.cn/3271716c843e44c7e00e66e38ad6fcd5/e2c3733327a5a413f63fc980e92f4552.html" target="_blank">学习强国</a></h2>
</div>
<div class="news-card">
<h2><a href="https://baoge666.serv00.net/" target="_blank">新闻影视</a></h2>
</div>
<div class="news-card">
<h2><a href="https://cryptosavingexpert.com/news" target="_blank">加密储蓄</a></h2>
</div>
<div class="news-card">
<h2><a href="https://feedly.com/i/discover" target="_blank">Feedly</a></h2>
</div>
<div class="news-card">
<h2><a href="https://www.inoreader.com/welcome" target="_blank">inoreader</a></h2>
</div>
<!-- You can add more news cards in the same format -->
</main>
<footer>
<p>【 宝哥自建新闻博客-20240818 】</p>
</footer>
</body>
</html>