Team:DTU-Denmark/jorooo

From 2014.igem.org

(Difference between revisions)
 
(4 intermediate revisions not shown)
Line 1: Line 1:
 +
<
 +
<!DOCTYPE html>
<html>
<html>
<head>
<head>
 +
     <title>My first web page</title>
     <title>My first web page</title>
 +
 +
    <!-- This is a comment, by the way -->
 +
</head>
</head>
<body>
<body>
-
   
+
 
 +
<h1>My first web page</h1>
 +
 
 +
<h2>What this is</h2>
 +
<p>A simple page put together using HTML. <em>I said a simple page put together using HTML.</em> A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML.</p>
 +
 
 +
<h2>Why this is</h2>
<ul>
<ul>
     <li>To learn HTML</li>
     <li>To learn HTML</li>
Line 19: Line 31:
         </ol>
         </ol>
     </li>
     </li>
-
     <li>Because I've fallen in love with my computer and want to give her some HTML loving.</li>
+
     <li>Because I have fallen in love with my computer and want to give her some HTML loving.</li>
</ul>
</ul>
 +
<h2>Where to find the tutorial</h2>
 +
<p><a href="http://www.htmldog.com"><img src="http://www.htmldog.com/badge1.gif" width="120" height="90" alt="HTML Dog"></a></p>
 +
 +
<h3>Some random table</h3>
 +
<table>
 +
    <tr>
 +
        <td>Row 1, cell 1</td>
 +
        <td>Row 1, cell 2</td>
 +
        <td>Row 1, cell 3</td>
 +
    </tr>
 +
    <tr>
 +
        <td>Row 2, cell 1</td>
 +
        <td>Row 2, cell 2</td>
 +
        <td>Row 2, cell 3</td>
 +
    </tr>
 +
    <tr>
 +
        <td>Row 3, cell 1</td>
 +
        <td>Row 3, cell 2</td>
 +
        <td>Row 3, cell 3</td>
 +
    </tr>
 +
    <tr>
 +
        <td>Row 4, cell 1</td>
 +
        <td>Row 4, cell 2</td>
 +
        <td>Row 4, cell 3</td>
 +
    </tr>
 +
</table>
 +
 +
<h3>Some random form</h3>
 +
<p><strong>Note:</strong> It looks the part, but won't do a damned thing.</p>
 +
 +
<form action="somescript.php" method="post">
 +
 +
<p>Name:</p>
 +
<p><input name="name" value="Your name"></p>
 +
 +
<p>Comments: </p>
 +
<p><textarea rows="10" cols="20" name="comments">Your comments</textarea></p>
 +
 +
<p>Are you:</p>
 +
<p><input type="radio" name="areyou" value="male"> Male</p>
 +
<p><input type="radio" name="areyou" value="female"> Female</p>
 +
<p><input type="radio" name="areyou" value="hermaphrodite"> An hermaphrodite</p>
 +
<p><input type="radio" name="areyou" value="asexual" checked> Asexual</p>
 +
 +
<p><input type="submit"></p>
 +
 +
</form>
</body>
</body>
</html>
</html>

Latest revision as of 15:19, 23 July 2014

< <!DOCTYPE html>

My first web page

My first web page

What this is

A simple page put together using HTML. I said a simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML. A simple page put together using HTML.

Why this is

  • To learn HTML
  • To show off
    1. To my boss
    2. To my friends
    3. To my cat
    4. To the little talking duck in my brain
  • Because I have fallen in love with my computer and want to give her some HTML loving.

Where to find the tutorial

HTML Dog

Some random table

Row 1, cell 1 Row 1, cell 2 Row 1, cell 3
Row 2, cell 1 Row 2, cell 2 Row 2, cell 3
Row 3, cell 1 Row 3, cell 2 Row 3, cell 3
Row 4, cell 1 Row 4, cell 2 Row 4, cell 3

Some random form

Note: It looks the part, but won't do a damned thing.

Name:

Comments:

Are you:

Male

Female

An hermaphrodite

Asexual