WEEK 3 - Introduction to HTML
Today, I learn some step on how to create a html file and I find that it was fun to making a website. I follow the step given in slide and modify by using own preferences .
HTML Tutorial
Visit W3Schools!
Hello World
This is a heading
This is a paragraph.
Visit W3Schools!
Firstname | Lastname | Age |
---|---|---|
Jill | Smith | 50 |
Eve | Jackson | 94 |
The source code to create my first HTML document
<html>
<head>
<title>HTML Tutorial</title>
<style>
body {
background-color: #93B874;
}
</style>
</head>
<body>
<h1 style="background-color:DodgerBlue">Hello World</h1>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<img src="https://www.smashingmagazine.com/wp-content/uploads/2015/06/10-dithering-opt.jpg" style="width:304px;height:228px;">
<br>
<a href="https://www.w3schools.com/" target="_blank">Visit W3Schools!</a>
<table style="width:100%">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
</br>
</body>
</html>
Here is my output :
Comments
Post a Comment