HTML AND JQUERY CODING EXERCISES: Coding For Beginners by TAM JJ

HTML AND JQUERY CODING EXERCISES: Coding For Beginners by TAM JJ

Author:TAM, JJ [TAM, JJ]
Language: eng
Format: epub
Published: 2020-11-29T00:00:00+00:00


Define a dialog box

HTML CODE

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>How to define a dialog box or window</title>

</head>

<body>

<style>

table, th, td {

border: 1px solid red;

}

</style>

</head>

<body>

<table>

<tr>

<th>March <dialog open>This is an open dialog window</dialog></th>

<th>April</th>

<th>May</th>

</tr>

<tr>

<td>31</td>

<td>30</td>

<td>31</td>

</tr>

</table>

</body>

</html>

OUTPUT

Define a section

in a document

HTML CODE

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>How to define a section in a document</title>

</head>

<body>

<div>

<h1>htmlresource Tutorial</h1>

<p>This is example of division</p>

</div>

</body>

</html>

OUTPUT



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.