- Web Developer's Reference Guide
- Joshua Johanan Talha Khan Ricardo Zea
- 187字
- 2021-07-09 20:18:20
Chapter 1. HTML Elements
HyperText Markup Language (HTML) is a language that annotates text. Annotation of text is done using elements. Using the following p
element, as an example, we will see how to use HTML:
<p>This is an example</p>
HTML elements also have attributes that will modify how they are rendered or interpreted. Attributes are added inside of the starting tag. Here is the class
attribute in a p
element:
<p class="example">This is an example</p>
There have been multiple specifications of HTML so far, but we will just look at the most commonly used and important elements of HTML5. HTML5 is the latest official specification, so we will be as future-proof as possible at the time of writing this book. You will want to follow the specifications of HTML as closely as possible. Most browsers are very forgiving and will render your HTML, but when you go beyond the specifications, you can and will run into strange rendering issues.
Note
All HTML elements will have global attributes. The attributes listed for each element in the sections that follow are the attributes beyond the global attributes.
- C語言程序設計(第3版)
- 趣學Python算法100例
- 面向STEM的Scratch創新課程
- Learning Laravel 4 Application Development
- YARN Essentials
- Java Web開發詳解
- Microsoft Azure Storage Essentials
- TMS320LF240x芯片原理、設計及應用
- JBoss:Developer's Guide
- 深入理解Java虛擬機:JVM高級特性與最佳實踐
- Android應用開發攻略
- 計算機常用算法與程序設計教程(第2版)
- MySQL數據庫應用技術及實戰
- Neo4j High Performance
- μC/OS-III源碼分析筆記