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 168 169 170 171 172 173 174 175 176 177 178
| <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>百度一下,你就知道</title> <style type="text/css"> body { margin: 0; padding: 0; list-style: none; text-decoration: none; font-size: 1; font-family: "宋体"; background-color: white; }
a { color: #00c; text-decoration: none; } a:hover{ color:red; text-decoration: underline; }
#topline { text-align: right; font-size:20px; margin:10px 10px; }
#logo { margin-top: 10px; text-align: center; }
#apps { margin-top: 20px; text-align: center; font-size: 30px; font-weight: bold; }
#search { margin-top: 20px; text-align: center; } #search #enter{ width:600px; height:30px; font-size: 20px; font-weight: 400; vertical-align: middle; border: 1px solid black; border-radius: 10px 10px 10px 10px; } #search #submit{ width:100px; height:37px; font-size: 20px; font-weight: 500; vertical-align: middle; cursor: pointer; color: white; background-color:#3836E0; border: 1px solid black; border-radius: 10px 10px 10px 10px; }
#hotnews #title {margin-top: 50px;} #hotnews #title a{ font-size: 20px; font-family: Arial Bold; font-weight: 900; color:black; margin-left: 485px; } #hotnews #hotlist{ display: flex; justify-content: center; } #hotnews #hotlist ul { padding-top: 5px; width: 280px; display: inline-block; } #hotnews #hotlist li{ height: 36px; line-height: 36px; font-size: 20px; text-align: left; } #hotnews #hotlist a{ height: 36px; line-height: 36px; font-size: 20px; padding-left: 20px; } #hotnews ul{list-style-type:none;} #hotnews #top3{font-weight: bold;} #hotnews #top3 #one,#hotnews #top3 #one a{color: #cc061d;} #hotnews #top3 #two,#hotnews #top3 #two a{color: rgb(240, 105, 15);} #hotnews #top3 #three,#hotnews #top3 #three a{color: #f0a923;} #hotnews #else ul li,#hotnews #else ul li a{color:#72747d}
#bottomline{ margin-top: 240px; position: absolute; left: 50%; transform: translateX(-50%); } </style> </head> <body> <div id="topline"> <a href="https://www.baidu.com/gaoji/advanced.html">设置</a> | <a href="https://passport.baidu.com/">登录</a> </div> <div id="logo"> <a href="https://www.baidu.com/" target="_blank"><img src="https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png" title="点此进入百度官网" width="370" height="180"></a> </div> <div id="apps"> <a href="http://news.baidu.com/" target="_blank">新闻</a> <a href="https://map.baidu.com/" target="_blank">地图</a> <a href="http://image.baidu.com/" target="_blank">图片</a> <a href="https://haokan.baidu.com/" target="_blank">视频</a> <a href="http://tieba.baidu.com/" target="_blank">贴吧</a> <a href="https://wenku.baidu.com/" target="_blank">文库</a> <a href="https://baike.baidu.com/" target="_blank">百科</a> <a href="https://www.baidu.com/more/" target="_blank">更多>></a> </div> <div id="search"> <input id="enter" type="text" maxlength="25" value="最多输入20个字"/> <input id="submit" type="submit" value="百度一下"/> </div> <div id="hotnews"> <div id="title"> <a href="https://top.baidu.com/" target="_blank">百度热搜></a> </div> <div id="hotlist"> <div id="top3"> <ul> <li id="one">1<a href="https://pranx.com/win10-update/" target="_blank">北京申奥成功</a></li> <li id="two">2<a href="https://pranx.com/win10-update/" target="_blank">吴亦凡被判入狱</a></li> <li id="three">3<a href="https://pranx.com/win10-update/" target="_blank">中大即将迎来100年建校</a></li> </ul> </div> <div id="else"> <ul> <li id>4<a href="https://pranx.com/win10-update/" target="_blank">骑士抢七大战胜勇士</a></li> <li id>5<a href="https://pranx.com/win10-update/" target="_blank">姆巴佩世界杯决赛帽子戏法</a></li> <li id>6<a href="https://pranx.com/win10-update/" target="_blank">火影忍者完结</a></li> </ul> </div> </div> </div> <div id="bottomline"> <a href="https://home.baidu.com/" target="_blank">关于百度</a> | <a href="https://e.baidu.com/" target="_blank">企业推广</a> | <a href="https://www.baidu.com/duty/" target="_blank">使用前必读</a> | <a href="https://help.baidu.com/" target="_blank">帮助中心</a> | <a href="https://beian.mps.gov.cn/#/query/webSearch" target="_blank">京公网安备11000002000001号</a> </div> </body> </html>
|