24.04.2017
Monday
HTML
we studied HTML tags and codings.
Example for HTML coding.<html>
<head>
<title>My First Web Page</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<script src="action.js"></script>
</head>
<body>
<h1></h1>
<p>
<img src="helloworld.jpg" alt="Hello World" width="450" height="450"> </p>
<b>Hello World!</b><b>This is my first web page on uki.</b>
</p>
</body>
</html>
⟹ <h1>Welcome to Uki </h1>
Welcome to Uki
⟹<h2>Welcome to Uki </h2>
Welcome to Uki
⟹ <h3>Welcome to Uki </h3>
Welcome to Uki
⟹<h4>Welcome to Uki </h4>
Welcome to Uki
⟹<img src="helloworld.jpg" alt="Hello World" width="450" height="450">
⟹<a href="http://www.uki.life">UkiLife</a>
http://www.uki.life
⟹<b>Hello World!</b>
Hello World!
⟹<i>This text is italic.</i>
This text is italic.
⟹This is<sub>supscript</sub> and <sup>superscript</sup>
This issupscript and superscript
⟹<strong>This text is important.</strong>
This text is important.
⟹<mark>This text is marked.</mark>
This text is marked.
⟹<ins>This text is inserted.</ins>
This text is inserted.
⟹<small>This text is small.</small>
This text is small.
⟹<p style="color:red"> I am red </p>
I am red
⟹<p style="color:blue"> I am blue </p>
I am blue
⟹<h1 style="color:green"> This is a heading </h1>
This is a heading
⟹<p style="font-size:36px;"> I am big</p>
I am big
⟹<p style="color:red"> I am red </p>
I am red
⟹<h2 style="font-family:verdana;"> This is a heading </h1>
This is a heading
⟹ <p style="font-family:courier;"> This is a paragraph </p>
This is a paragraph
⟹<h3 style="font-size:300%"> This is a heading </h3>
This is a heading
⟹<h2 style="background-color:orange;">Background color set by using orange</h2>
Background color set by using orange
⟹
<body>
<table border=1 style="border:1px solid black; border-collapse:collapse;">
<tr>
<th>name</th>
<th>Age</th>
<th>City</th>
</tr>
<tr>
<td>Abi</td>
<td>20</td>
<td>Jaffna</td>
</tr>
<tr>
<td>Ravi</td>
<td>30</td>
<td>Nallur</td>
</tr>
<tr>
<td>Mayu</td>
<td>25</td>
<td>Jaffna</td>
</tr>
</table>
</body>
name | Age | City |
---|---|---|
Abi | 20 | Jaffna |
Ravi | 30 | Nallur |
Mayu | 25 | Jaffna |
No comments:
Post a Comment