Home Web Front-end HTML Tutorial Implementation summary of a website's static homepage_html/css_WEB-ITnose

Implementation summary of a website's static homepage_html/css_WEB-ITnose

Jun 24, 2016 am 11:56 AM
website static front page

Source: http://www.ido321.com/842.html

Implementation of header part

   1: <div class="top">
Copy after login
   2:      <ul class="topul">
Copy after login
   3:          <li id="time"><a href="#">9月25日 周四</a></li>
Copy after login
   4:          <li><a href="#">联系我们</a></li>
Copy after login
   5:          <li><a href="#">收藏本站</a></li>
Copy after login
   6:      </ul>
Copy after login
   7:  </div>
Copy after login
   8:  <div class="header">
Copy after login
   9:      <div class="logo">
Copy after login
  10:          <a href="#"><img src="./img/logo.png" alt="xxxxx"></a>
Copy after login
  11:      </div>
Copy after login
  12:      <div class="nav">
Copy after login
  13:          <ul class="navul">
Copy after login
  14:              <li><a href="#">首页</a></li>
Copy after login
  15:              <li><a href="#">校园动态</a></li>
Copy after login
  16:              <li><a href="#">失物招领</a></li>
Copy after login
  17:              <li><a href="#">二手市场</a></li>
Copy after login
  18:              <li><a href="#">论坛专区</a></li>
Copy after login
  19:              <li><a href="#">个人中心</a></li>
Copy after login
  20:          </ul>
Copy after login
  21:      </div>
Copy after login
  22:  </div>
Copy after login
  23: </div>
Copy after login

CSS of header part

   1: .top
Copy after login
   2: {
Copy after login
Copy after login
   3:     margin-top: 1em;
Copy after login
   4: }
Copy after login
   5: .topul
Copy after login
   6: {
Copy after login
   7:     list-style: none;
Copy after login
   8:     margin-right: 3%;
Copy after login
   9:     color: #8B8989;
Copy after login
  10: }
Copy after login
  11: .topul li
Copy after login
  12: {
Copy after login
  13:     float: right;
Copy after login
  14:     margin-left: 25px;
Copy after login
  15: }
Copy after login
  16: .topul li a
Copy after login
  17: {
Copy after login
  18:     color: #8B8989;
Copy after login
  19:     text-decoration: none;
Copy after login
  20: }
Copy after login
  21: .topul li a:hover
Copy after login
  22: {
Copy after login
  23:     color: #8B8989;
Copy after login
  24:     text-decoration: none;
Copy after login
  25: }
Copy after login
  26: .header
Copy after login
  27: {
Copy after login
  28:     margin-top: 1em;
Copy after login
  29:     height:100px;
Copy after login
  30:     position: relative;
Copy after login
  31:     top: 0;
Copy after login
  32:     left: 0;
Copy after login
  33: }
Copy after login
  34: .logo
Copy after login
  35: {
Copy after login
  36:     float: left;
Copy after login
  37: }
Copy after login
  38: .nav
Copy after login
  39: {
Copy after login
  40:     float: left;
Copy after login
  41:     width: 80%;
Copy after login
  42:     position: absolute;
Copy after login
  43:     top:55%;
Copy after login
  44:     left: 20%;
Copy after login
  45: }
Copy after login
  46: .navul
Copy after login
  47: {
Copy after login
  48:     list-style: none;
Copy after login
  49:     text-align: center;
Copy after login
  50: }
Copy after login
  51: .navul li
Copy after login
  52: {
Copy after login
  53:     float: left;
Copy after login
  54:     width: 12.5%;
Copy after login
  55:     line-height: 200%;
Copy after login
  56:     margin-left: 3.5%;
Copy after login
  57:     letter-spacing: 2px;
Copy after login
  58: }
Copy after login
  59: .navul li a
Copy after login
  60: {
Copy after login
  61:     color: #000000;
Copy after login
  62:     text-decoration: none;
Copy after login
  63: }
Copy after login
  64: .navul li a:hover
Copy after login
  65: {
Copy after login
  66:     color: #000000;
Copy after login
  67:     text-decoration: none;
Copy after login
  68: }
Copy after login

For the body part, there are compatibility issues when drawing circles with css

   1: <div class="shaft">
Copy after login
   2:     <div class="past">
Copy after login
   3:         <div class="circle">
Copy after login
   4:             <a href="#"><span>1</span></a>
Copy after login
   5:         </div>
Copy after login
   6:     </div>
Copy after login
   7:     <div class="lianjie"></div>
Copy after login
   8:     <div class="now">
Copy after login
   9:         <div class="circle">
Copy after login
  10:             <a href="#"><span>2</span></a>
Copy after login
  11:         </div>
Copy after login
  12:     </div>
Copy after login
  13:     <div class="lianjie"></div>
Copy after login
  14:     <div class="future">
Copy after login
  15:         <div class="circle">
Copy after login
  16:             <a href="#"><span>3</span></a>
Copy after login
  17:         </div>
Copy after login
  18:     </div>
Copy after login
  19: </div>
Copy after login
  20: <br/><br/><br/>
Copy after login
  21: <div class="maioshu">
Copy after login
  22:     <div class="desc descpast">
Copy after login
  23:         <img src="./img/past.png" alt="past">
Copy after login
  24:         <h3>最初的梦想</h3>
Copy after login
  25:         <p>2008年医工伍学秦创立</p>
Copy after login
  26:     </div>
Copy after login
  27:     <div class="desc descnow">
Copy after login
  28:         <img src="./img/now.png" alt="now">
Copy after login
  29:         <h3>活在当下</h3>
Copy after login
  30:         <p>用爱把协会做好</p>
Copy after login
  31:     </div>
Copy after login
  32:     <div class="desc descfuture">
Copy after login
  33:         <img src="./img/future.png" alt="future">
Copy after login
  34:         <h3>展望未来</h3>
Copy after login
  35:         <p>会有个怎么样的你</p>
Copy after login
  36:     </div>
Copy after login
  37: </div>
Copy after login

Main css

   1: .circle
Copy after login
   2: {
Copy after login
Copy after login
   3:      background-color:#F8F6F5;
Copy after login
   4:      width: 50px;   /* div的宽和高为600px即正方形的边长为600px */
Copy after login
   5:      height: 50px;
Copy after login
   6:      text-align: center;
Copy after login
   7:
Copy after login
   8:      -moz-border-radius: 25px;   /* 圆的半径为边长的一半,即300px */
Copy after login
   9:      -webkit-border-radius: 25px;
Copy after login
  10:      border-radius: 25px;
Copy after login
  11:
Copy after login
  12:      display: -moz-box;
Copy after login
  13:      display: -webkit-box;
Copy after login
  14:      display: box;
Copy after login
  15:
Copy after login
  16:      -moz-box-orient: horizontal;
Copy after login
  17:      -webkit-box-orient: horizontal;
Copy after login
  18:      box-orient: horizontal;
Copy after login
  19:
Copy after login
  20:      -moz-box-pack: center;
Copy after login
  21:      -moz-box-align: center;
Copy after login
  22:
Copy after login
  23:      -webkit-box-pack: center;
Copy after login
  24:      -webkit-box-align: center;
Copy after login
  25:      box-pack: center;
Copy after login
  26:      box-align: center;
Copy after login
  27:      font:normal 25px/100%;
Copy after login
  28:      text-shadow:1px 1px 1px #000;
Copy after login
  29:      color:#000000;
Copy after login
  30: }
Copy after login

Effect

In IE, the numbers 1, 2, and 3 cannot be centered, so I added a span later (there was none before) and used IE Hacks solve

   1: <!--[if IE]>
Copy after login
   2:   <style type="text/css">
Copy after login
   3:     .circle span
Copy after login
   4:     {
Copy after login
   5:         display:block;
Copy after login
   6:         padding-top:12px;
Copy after login
   7:         font-weight:bold;
Copy after login
   8:     }
Copy after login
   9:   </style>
Copy after login
  10: <![endif]-->
Copy after login

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is there any website for learning C language? Is there any website for learning C language? Jan 30, 2024 pm 02:38 PM

Websites for learning C language: 1. C Language Chinese Website; 2. Rookie Tutorial; 3. C Language Forum; 4. C Language Empire; 5. Script House; 6. Tianji.com; 7. Red and Black Alliance; 8, 51 Self-study network; 9. Likou; 10. C Programming. Detailed introduction: 1. C language Chinese website, which is a website dedicated to providing C language learning materials for beginners. It is rich in content, including basic grammar, pointers, arrays, functions, structures and other modules; 2. Rookie tutorials, This is a comprehensive programming learning website and more.

How to open a website using Task Scheduler How to open a website using Task Scheduler Oct 02, 2023 pm 11:13 PM

Do you frequently visit the same website at about the same time every day? This can lead to spending a lot of time with multiple browser tabs open and cluttering the browser while performing daily tasks. Well, how about opening it without having to launch the browser manually? It's very simple and doesn't require you to download any third-party apps, as shown below. How do I set up Task Scheduler to open a website? Press the key, type Task Scheduler in the search box, and then click Open. Windows On the right sidebar, click on the Create Basic Task option. In the Name field, enter the name of the website you want to open and click Next. Next, under Triggers, click Time Frequency and click Next. Select how long you want the event to repeat and click Next. Select enable

How to set up Google Chrome homepage How to set up Google Chrome homepage Mar 02, 2024 pm 04:04 PM

How to set up Google Chrome homepage? Google Chrome is the most popular web browser software today. This browser has simple and efficient features that users like. When using browsers, different people have different settings preferences. Some people like to use Google Chrome. The browser is set as the default homepage, and some people like to set the homepage as other search engines, so where should it be set? Next, the editor will bring you a quick method to set up the homepage of Google Chrome. I hope it can be helpful to you. How to quickly set the Google Chrome homepage 1. Open Google Chrome (as shown in the picture). 2. Click the menu button in the upper right corner of the interface (as shown in the picture). 3. Select the "Settings" option (as shown in the picture). 4. In the settings menu, find "Search Engine" (such as

How to convert your website into a standalone Mac app How to convert your website into a standalone Mac app Oct 12, 2023 pm 11:17 PM

In macOS Sonoma and Safari 17, you can turn websites into "web apps," which can sit in your Mac's dock and be accessed like any other app without opening a browser. Read on to learn how it works. Thanks to a new option in Apple's Safari browser, it's now possible to turn any website on the internet you frequently visit into a standalone "web app" that lives in your Mac's dock and is ready for you to access at any time. The web app works with Mission Control and Stage Manager like any app, and can also be opened via Launchpad or SpotlightSearch. How to turn any website into

How to check dead links on your website How to check dead links on your website Oct 30, 2023 am 09:26 AM

Methods to check dead links on a website include using online link tools, using webmaster tools, using robots.txt files, and using browser developer tools. Detailed introduction: 1. Use online link tools. There are many online dead link detection tools, such as LinkDeath, LinkDefender and Xenu. These tools can automatically detect dead links in the website; 2. Use webmaster tools. Most webmasters Tools, such as Google's Webmaster Tools, Baidu's Webmaster Tools, etc., all provide dead link detection functions and so on.

In-depth analysis of the role and usage of the static keyword in C language In-depth analysis of the role and usage of the static keyword in C language Feb 20, 2024 pm 04:30 PM

In-depth analysis of the role and usage of the static keyword in C language. In C language, static is a very important keyword, which can be used in the definition of functions, variables and data types. Using the static keyword can change the link attributes, scope and life cycle of the object. Let’s analyze the role and usage of the static keyword in C language in detail. Static variables and functions: Variables defined using the static keyword inside a function are called static variables, which have a global life cycle

What should I do if the Google Chrome homepage changes to 360? Restore the Google Chrome homepage What should I do if the Google Chrome homepage changes to 360? Restore the Google Chrome homepage Mar 15, 2024 am 08:16 AM

What should I do if the Google Chrome homepage changes to 360? Google Chrome is a simple and convenient browser, but many friends find that the simple homepage has been replaced by a 360 homepage during use. If they want to restore it to its original style, how should it be set? Below, the editor will show you how to restore the Google Chrome homepage. Solution: 1. First open Google Chrome. 2. If you want to change it to the default, click the three dots in the upper right corner. 3. Click [Settings] to open the settings page. 4. Click [Startup]. 5. As shown in the picture, [Open a specific web page or a group of web pages] here is the URL of 360 Navigation. 6. Click the three dots on the right side of the 360 ​​navigation. 7. Click [Remove].​

The role and application scenarios of private static methods in PHP The role and application scenarios of private static methods in PHP Mar 23, 2024 am 10:18 AM

The role and application scenarios of private static methods in PHP In PHP programming, a private static method is a special method type. It can only be accessed within the class in which it is defined and cannot be directly called from the outside. Private static methods are usually used for the internal logic implementation of a class, providing a way to encapsulate and hide details. At the same time, they have the characteristics of static methods and can be called without instantiating the class object. The following will discuss the role and application scenarios of private static methods, and provide specific code examples. Function: encapsulate and hide implementation details: private static

See all articles