Html

From DreamsteepWiki

Jump to: navigation, search

DOWNLOAD A FILE

<html>
<head>
  <title>My page</title>
</head>
<body>
<!-- Main content -->
 <h1>
  <a href="butt.zip" target="butt">Download Link</a> 
 </h1>
 test
</body>
</html>

BUTTON

<button type="button">Click Me!</button>

BUTTON2

       <input type="button" value="foo" onClick="window.location='http://www.foo.com" />


COMMENT

<!-- this is a comment -->


LINK

<a href="url">../help_page.html</a> 


IMAGE


<img src="wyoming.gif" alt="cody" /> 


DIV TAGS

<DIV style="color:red">Wow, I am totally red!</DIV> 

ALT ATTRIBUT

<img src="flat.gif" alt="flat rock">

PARAGRAPH

<p>
this is a pargraph. it contains long stings of text
that nicely wrap around to the 
next line;
</p>


UNORDERED LIST


<ul class="navbar">
  <li><a href="test.html">Home page</a>
  <li><a href="about.html">about</a>
  <li><a href="services.html">services</a>
  <li><a href="links.html">Links</a>
</ul>

SAMPLE PAGE WITH HEADER


<html>
<head>
  <title>My page</title>
</head>

<body>

<!-- Main content -->
<h1>test</h1>

test

</body>
</html>





Special chars


 	non-breaking space  	   	 
< 	less than 	< 	<
> 	greater than 	> 	>
& 	ampersand 	& 	&
¢ 	cent 	¢ 	¢
£ 	pound 	£ 	£
¥ 	yen 	¥ 	¥
€ 	euro 	€ 	€
§ 	section 	§ 	§
© 	copyright 	© 	©
® 	registered trademark 	® 	®
Personal tools