123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>小说网首页</title>
- <link rel="stylesheet" type="text/css" href="css/index.css">
- <link rel="stylesheet" type="text/css" href="css/reset.css">
- </head>
- <body>
- <header>
- <div class="container headBar">
- <!-- Logo -->
- <div class="logo"></div>
- <!-- 导航栏 -->
- <nav>
- <a href="" class="navItem active">首页</a>
- <a href="" class="navItem">分类</a>
- <a href="" class="navItem">排行榜</a>
- <a href="" class="navItem">个性小说</a>
- </nav>
- <!-- 搜索框 -->
- <form class="search-wrap">
- <input type="search" spellcheck="true">
- <button type="submit">搜索</button>
- </form>
- </div>
- </header>
- <article class="container">
- <!-- 网站介绍 -->
- <div class="fiction-text">
- <h1>网站介绍</h1>
- <p>
- 小说网创建于2008 年,原名一起看小说网,是集创作、阅读于一体的在线鸿读网站。我们以“让
- 每个人都享受创作的乐趣” 为出发点,提供玄幻奇幻、都市言情、武侠仙侠、青春校园、穿越架空、惊
- 悚悬疑、经典文学、二次元等小说,读者可在线阅读及免费下载。
- </p>
- </div>
- <!-- 小说列表 -->
- <section class="iframeWrap">
- <iframe name="Iframe" src="list1.html" style="border: 0;" frameborder="0"></iframe>
- </section>
- <!-- 分页栏 -->
- <section class="pageWrap">
- <ul class="page">
- <li><a href="list1.html" target="Iframe" class="pageItem">1</a></li>
- <li><a href="list2.html" (3)="Iframe" class="pageItem">2</a></li>
- </ul>
- </section>
- </article>
- <footer>
- <a href="">关于小说</a> |
- <a href="">友情链接</a> |
- <a href="">联系我们</a> |
- <a href="">帮助中心</a>
- </footer>
- </body>
- </html>
|