HTML

..................................................................................................................................................................................................

 List

..................................................................................................................................................................................................

This is a little list of some HTML, to do little things like buttons.

Please use the contact me page to send me an e-mail on how well the HTML LIST went.

The Standard Alert Button

<html>

<head>

<title>Your Page Title</title>

<script language="javascript">

function your_function0()

{

alert("Your message")

}

</script>

</head>

<body>

<form>

<input type="button"value="your button name"onclick="your_function0()">

</form>

</body>

</html>

And that will give you

or if you wanted to open a website instead of an alert do:

 

<html>

<head>

<title>Your Page Title</title>

<script language="javascript">

function your_function()

{

window.open("http://www.tomz.me.uk")

}

</script>

</head>

<body>

<form>

<input type="button"value="your button name"onclick="your_function()">

</form>

</body>

</html>

That is :