HTML (six) framework, color, script, character entities, Uniform Resource Locator

HTML frame

HTML frame

By using frames, you can display more than one page in the same browser window

Iframe remove border

Use iframe to display the target link page

RUNOOB.COM

HTML color

rgb(255,255,00,0.5) = #FFFF00

0.5 on behalf of Transparency

Web-safe colors

Various color from 33,66,99, CC, FF composition

HTML script

HTML script

JavaScript HTML pages with the more dynamic and interactive

You can only use the HTML output stream document.write . If you use it after the document has loaded (for example, in a function), will cover the entire document.

HTML character entities

In HTML reserved characters must be replaced with character entities

Some characters not found on the keyboard can also be used to replace the use of character entities

Common Character Entities

空格      

<Less than <<

Greater than>>
& Ampersand & &
"quotes" "
'apostrophe' (IE is not supported) '
¢ points ¢ ¢
£ £ £ £
¥ RMB ¥ ¥
€ euro € €
§ bar § §
? Copyright © ©
? Registered trademark ® ®
? ™ trademark ™
× × multiplication sign ×
÷ ÷ ÷ division sign

Phonetic symbol

? in the?
? Ä?
? Ä?
? Ä?

HTML Uniform Resource Locator (Uniform Resource Locators)

URL - Uniform Resource Locator

Grammar rules:
scheme: //host.domain: Port / path / filename
Description:
scheme - type definition Internet services. The most common type is http
Host - the domain host (default host http is the WWW)
Domain - the definition of an Internet domain name, such as runoob.com
: Port - the port number on the definition of the host (the default port number for http is 80)
path - defined path on the server (If omitted, the document must be in the root directory of the website).
filename - the name defined in the document / resources

Common URL Scheme

Access Scheme for ...
HTTP hypertext transfer protocol http: // ordinary web beginning. Not encrypted.
https secure hypertext transfer protocol secure website encrypts all information exchanged.
ftp file transfer protocol is used to download or upload files to the site.
file files on your computer

Guess you like

Origin www.cnblogs.com/peng8098/p/html_6.html