zoukankan      html  css  js  c++  java
  • SITE STRUCTURE

    SITE STRUCTURE
    HTML Review
    Congratulations! You've learned enough HTML to create a great website!

    Before we move on to styling with CSS, let's review what we learned in this lesson.

    LANGUAGES

    html: stands for hypertext markup language, and is used to give a webpage structure.

    css: stands for cascading style sheets, and is used to style HTML elements.
    HTML ELEMENTS

    h1 - h6: indicate text headings on a webpage. h1 is the largest heading; h6 is the smallest.

    Heading

    p: used for non-heading text, such as the bodies of articles or company descriptions.

    Description of company here.

    a: short for anchor and used to add links to other webpages. Anchor elements typically have an href attribute:

    Click here to learn how to make a website!
    img: used to add an image to a webpage. Image elements are self-closing and do not require a closing tag:

    video: used to add videos to a webpage, and uses multiple attributes and a nested source element: unordered list: used to create lists on a webpage and requires li elements inside a ul:
    • list item
    • another item
    • yet another
    div: used to organize HTML elements into different groups, which can be given a class attribute:

    Subheading!

    metadata tags: provide metadata about a webpage. WEB CONCEPTS

    parent/child elements: used to describe HTML elements that enclose or are enclosed by other elements. For example, below the ul is the parent and the li items are children:

    • ...
    • ...
    • ...
    Click Up Next to start learning about CSS!
  • 相关阅读:
    web移动开发最佳实践之js篇
    ubuntu升级到12.10
    C语言生成随机数
    终于签约了
    这个2012不寻常
    awk练习(实战)
    数据恢复的教训
    职业发展的一些随想
    diy谷蜂Y5刷机包基于官方0207稳定版
    web移动开发最佳实践之html篇
  • 原文地址:https://www.cnblogs.com/young-ma/p/7853269.html
Copyright © 2011-2022 走看看