Guide to Basic CSS Styling for Recycle Information Website

Guide to Basic CSS Styling for Recycle Information Website
Slide Note
Embed
Share

This guide provides tips and examples for utilizing basic CSS styles to enhance the appearance of a website dedicated to recycle information. Topics covered include creating a top navigation bar, using external style sheets, setting margins, styling navigation elements, incorporating images, and organizing content with HTML tags. By following these suggestions and hints, you can effectively style your recycle information website to attract and engage visitors.

  • CSS Styling
  • Recycle Information
  • Web Design
  • Navigation Bar
  • External Stylesheets

Uploaded on Jul 22, 2024 | 6 Views


Download Presentation

Please find below an Image/Link to download the presentation.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.

You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.

E N D

Presentation Transcript


  1. LAB 3 Review, Suggestions and Hints Basic CSS v1.02

  2. <nav class=topnavbar> No white space Two images and an <h1>

  3. EXTERNAL STYLE SHEETS Please all of your styling in the file: recycle_style.css <head> <title>City Recycle Information</title> <link rel= stylesheet href= recycle_style.css > </head>

  4. TOP MARGIN body { margin: 0; } * { margin: 0; } OR

  5. /* recycle_style.css */ /* recycle_style.css */ nav { background: #fbefb3; height: 42px; width: 100%; } * { margin : 0; } .hcenter { width: 100%; text-align: center; } nav ul li { list-style: none; } nav ul li a { float: left; text-decoration: none; border: 2px solid gray; padding: 0 20px 0 20px; margin: 0 15px 0 15px; }

  6. recycle_style.css index.html <nav> <a href="#">Recycle Centers</a> <a href="#">Resources</a> <a href="#">Composting</a> <a href="#contact">Contact Us</a> </nav>

  7. recycle_style.css index.html <h1 id="title"> #title { text-align: center; } <img alt="Recycle Logo" src="images/recycle_logo.png > #title img { vertical-align: middle; } Recycle <img alt="Recycle Logo src="images/recycle_logo.png > </h1>

  8. <div id="contents"> <ul> <li>Glass</li> <li>Paper</li> <li>Plastic</li> <li>Aluminum foil (clean)</li> <li>Cardboard (fold or break into small pieces)</li> </ul> </div> #contents { line-height: 3em; } #contents ul li { list-style-image: url( images/greenarrow.png ); }

More Related Content