中文
Go to Mobile Site
Learn Multiple Languages in Multiple Ways
Home
|
Languages
|
Education
|
Stock
|
Games
|
About
Education - Internet
Y
ou will learn the basic web development and other internet related technologies here.
Select a topic:
html
css
javascript
Pick an item:
HTML Text and Presentational Tags
HTML Link and List Tags
HTML Tables Tags
HTML Images and Objects Tags
HTML Forms Tags
HTML Body and Scripts Tags
HTML Colors
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE>Basic HTML Document</TITLE> <META NAME="Generator" CONTENT="Tool Used to Generate the Doc"> <META NAME="Author" CONTENT="Richard"> <META NAME="Keywords" CONTENT="html, test"> <META NAME="Description" CONTENT="this is an html sample page"> <style type="text/css"> BODY { color: red; } p, h1, h2, h3, h4, h5, h6, strong, em, abbr, acronym, address, bdo, blockquote, cite, q, code, div, ins, del, dfn, kbd, pre, samp, var, span, br, b, i, tt, sub, sup, big, small, hr { color: black; } </style> </HEAD> <BODY> abbr: <abbr title="HyperText Markup Language">HTML</abbr><br /> acronym: <acronym title="Cascading Style Sheets">CSS</acronym><br> address: <address>1 Broad Way, New York, NY</address><br> bdo: left-to-right: <bdo dir="ltr">Bi-directional text.</bdo> rtl: <bdo dir="rtl">good study</bdo><br> blockquote: <blockquote>Make Everyday a Special Day</blockquote> cite: <cite>Defines an in-line citation or reference to another source</cite><br> code: <code>string webRoot = HttpContext.Current.Server.MapPath(Context.Request.ApplicationPath); </code><br> dfn: <dfn title="Internet">A network of computer networks which operates world-wide using a common set of communications protocols</dfn><br> div: <div>Division. Defines a block of HTML. Commonly used to apply CSS to a chunk of a page.</div> em: <em> Emphasis </em><br> <h1>Heading 1</h1> <h2>Heading 2</h2> <h3>Heading 3</h3> <h4>Heading 4</h4> <h5>Heading 5</h5> <h6>Heading 6</h6> ins: <ins cite="bbb.html" datetime="20060808">Insertion</ins> del: It is<del cite="bbb2.html" datetime="20060808">n't</del> deleted<br> p: <p> Paragraph</p> kbd: <kbd> Keyboard. Used to define text that should be typed in by the user. </kbd><br> pre: <pre> Preformatted text. Whitespace is preserved.</pre> q: <q> An in-line quote. Used for small quotations.</q><br> samp: <samp> Sample. Defines sample output, from a computer program for example.</samp><br> span: <span> Used to group in-line HTML. span applies no meaning and is commonly used solely to apply CSS.</span><br> strong: <strong> Strong emphasis.</strong><br> var: <var>Variable:</var> <code><var>wordcount</var> = 6878;</code><br><br> hr: horizontal rule <hr/> b: <b>bold</b>, i: <i>italic</i>, tt: <tt>teletype</tt>, sub: <sub>subscript</sub>, sup: <sup>superscript</sup>, big: <big>big</big>, small: <small>small</small><hr/> </BODY> </HTML>
18.119.109.101