Section 1

Preview this deck

Hex: #00 00 00 (Black)

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (17)

Section 1

(17 cards)

Hex: #00 00 00 (Black)

Front

rgb (0, 0, 0)

Back

Function of HTML

Front

Describe web pages

Back

Hyperlink

Front

<a href="https://www.google.com"> Click Me </a>

Back

Hex: #ff 00 00 (Red)

Front

rgb (255, 0, 0)

Back

Hex: #00 ff 00 (Green)

Front

rgb (0, 255, 0)

Back

Unordered list (12345/ ABCDE)

Front

<ol> <li>List item 1</li> <li>List item 2</li> </ol>

Back

HTML

Front

Hypertext Markup Language

Back

Row span in table (打直2格)

Front

<th rowspan="2">Header</th>

Back

Display image

Front

<img src="name" alt="caption" width=" " height=" ">

Back

Table header

Front

<th>Header</th>

Back

Table (1 row 3 columns)

Front

<table> <tr> <td>column 1</td> <td>column 2</td> <td>column 3</td> </tr> </table>

Back

Hex: #ff ff ff (White)

Front

rgb (255, 255, 255)

Back

Column span in table (打橫2格)

Front

<th colspan="2">Header</th>

Back

WYSIWYG

Front

What You See Is What You Get

Back

Unordered list (bullet point)

Front

<ul> <li>List item 1</li> <li>List item 2</li> </ul>

Back

Hex: #00 00 ff (Blue)

Front

rgb (0, 0, 255)

Back

Attributes

Front

Provide information about the elements

Back