11.26. HTML Quick check list

发布时间 :2024-02-22 23:00:05 UTC      

HTML Quick check list. You can print it for daily use.

11.26.1. HTML basic documentation

<!DOCTYPE html>
<html>
<head>
<title>document title</title>
</head>
<body>
visible text...
</body>
</html>

11.26.2. Basic tag

<h1>Biggest Title</h1>
<h2> . . . </h2>
<h3> . . . </h3>
<h4> . . . </h4>
<h5> . . . </h5>
<h6>The smallest title</h6>

<p>This is a paragraph.</p>
<br> (wrap)
<hr> (horizontal line)
<!-- This is a comment -->

11.26.3. Text formatting

<b>Bold Text</b>
<code>Computer code</code>
<em>Emphasize Text</em>
<i> Italic text</i>
<kbd>keyboard input</kbd>
<pre>Preformatted Text</pre>
<small>Smaller Text</small>
Important Text

Abbreviation
<address>(contact information)
<bdo>(Text direction)
<blockquote>(a section referenced from another source)
<cite>(Name of job)
<del>(deleted text)
<ins>(inserted text)
<sub>(subscript text)
<sup>(superscript text)

11.26.5. Images

<imgloading="lazy"src="URL"alt="replace text"height="42"width="42">

11.26.6. Style / Block

<style type="text/css">
h1 {color:red;}
p {color:blue;}
</style>
<div>Block level elements in documents</div>
<span>Inline elements in documents</span>

11.26.7. Unordered list

<ul><li>project</li><li>project</li></ul>

11.26.8. Ordered list

<ol><li>Item 1</li><li>Item 2</li></ol>

11.26.9. Definition list

<dl><dt>Item 1</dt><dd>Describe the project 1</dd><dt>Item 2</dt><dd>Describe the project
2</dd></dl>

11.26.10. Tables

<tableborder="1"><tr><th>Table Title</th><th>Table Title</th></tr><tr><td>Table Data</td><td>Table Data</td></tr></table>

11.26.11. Iframe

<iframesrc="demo_iframe.htm"></iframe>

11.26.12. Forms

<formaction="demo_form.php"method="post/get"><inputtype=
"text"name="email"size="40"maxlength="50"><inputtype="password">
<inputtype="checkbox"checked="checked"><inputtype="radio"checked=
"checked"><inputtype="submit"value="Send"><inputtype="reset">
<inputtype="hidden"><select><option>apple</option><optionselected=
"selected">banana</option><option>cherry</option></select><textareaname=
"comment"rows="60"cols="20"></textarea></form>

11.26.13. Entities

&lt;equivalent to<&gt; equivalent to>&#169; equivalent to ©

Principles, Technologies, and Methods of Geographic Information Systems  102

In recent years, Geographic Information Systems (GIS) have undergone rapid development in both theoretical and practical dimensions. GIS has been widely applied for modeling and decision-making support across various fields such as urban management, regional planning, and environmental remediation, establishing geographic information as a vital component of the information era. The introduction of the “Digital Earth” concept has further accelerated the advancement of GIS, which serves as its technical foundation. Concurrently, scholars have been dedicated to theoretical research in areas like spatial cognition, spatial data uncertainty, and the formalization of spatial relationships. This reflects the dual nature of GIS as both an applied technology and an academic discipline, with the two aspects forming a mutually reinforcing cycle of progress.