| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

HypertextLiteracy

Page history last edited by PBworks 17 years, 4 months ago

Hypertext Literacy

 

Note: planning and brainstorming has been moved to HypertextLiteracyPlanning.

 

Participants

 

Basic HTML Elements

 

Simple text modifications

 

  • <em>This text receives emphasis.</em>
  • <strong>This text receives strong emphasis.</strong>

 

Linking to other pages and files

 

  • <a href="http:// example.com/path/to/a/page.html">This text links to another page.</a> -- NB: an extra space has been added to prevent the wiki from auto-linking the URL.

 

  • <img src="http:// example.com/link/to/an/image.jpg" alt="This is alternate text to an image." />

 

Basic document structure

 

  • <p>This text becomes a paragraph.</p>
  • <blockquote><p>This paragraph is a blockquote.</p></blockquote>
  • <h1>This is a top level heading.</h1>
  • <h2>This is a second level heading.</h2>

 

Sites Allow Disallow

Different sites allow and disallow different HTML tags and attributes. If you use a specific site that allows some HTML (but not all), please add it here, and note which tags and attributes you know are allowed or disallowed. If you know more about what is allowed or disallowed in the sites below, please add to it!

 

Consumating.com

Consumating.com has several places where you can enter markup, in general the following is allowed in every multiline textarea.

  • <a href> - hyperlinks
  • <cite> - citations
  • <em> - emphasis
  • <strong> - strong emphasis
  • ...

The following appears to be *disallowed* and is filtered out:

  • tags: <font>, <img>
  • attributes: class, style
  • ...

 

Flickr.com

Flickr.com descriptions and comments allow some markup

Allowed:

  • <a href> - hyperlinks, <img> - images, ...

Disallowed:

  • <div>, ...

 

...

 

HTML Boilerplate

 


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">

<html>

  <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <title>untitled</title>

  </head>

  <body>

    <p>This is a paragraph.</p>

  </body>

</html>

Comments (0)

You don't have permission to comment on this page.