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!

最新文章

  1. 二维码生成Zxing.net DEMO
  2. hdu4135 容斥定理
  3. 在CentOS上安装rabbitmq-server
  4. Oracle诡异结果调查备忘 - A investigation memo of weird Oracle database search results
  5. php操作oracle的方法类集全
  6. ueditor asp.net版本更改图片保存路径
  7. linux服务器时间同步
  8. 一段代码详解JavaScript面向对象
  9. php调用java
  10. nginx中支持.htaccess并禁止php在特定目录无法运行
  11. jacascript 事件对象event
  12. 纯js Ajax 请求
  13. call Apply bind详解
  14. centos7.4 调整根目录大小
  15. eos开发(三)使用cleos命令行客户端操作EOS——关于钱包wallet和账户account
  16. javadoc中{@link}与@see的简单使用以及区别
  17. 关于C++中字符串与数字的互相转换
  18. c#之using关键字
  19. 事务不起作用 Closing non transactional SqlSession
  20. Solr打分出错

热门文章

  1. Underscore.js(1.9.1) 封装库
  2. WAL基础
  3. 部署redis5.0.3
  4. [UE4]蓝图的颜色
  5. 关于Jedis连接Linux上的redis出现 DENIED Redis is running in protected mode问题的解决方案
  6. Linux下单独编译安装PHP扩展包
  7. python学习笔记-学习大纲
  8. 05 Linux系统下的用户以及用户权限管理(权限管理介绍、用户管理、常见命令介绍)
  9. 搭建(WSTMart)php电商环境时缺少fileinfo函数
  10. Android 6.0动态申请权限时,权限框闪一下就消失的问题;