![[NRAO]](/icons/nraologo_ahb.gif)
|
HTML Basics and the NRAO Style
The Basics
- At its core: simple markup language; HTML documents
are plain text!
- White space (space, tab, newlines, paragraphs) ignored.
- Use "tags" to specify markup, e.g.
<br> for
line break, <p> for
paragraph
- Physical
<b>boldface</b>
and Logical <strong>strong</strong> :
boldface and strong.
- Embed images with
<img
src="smiley.png"> :
- Links via
<a
href="url"> to other HTML
resources (pages, images, ...)
|