-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
154 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
</head> | ||
<body> | ||
<h1>TABLES</h1> | ||
<table border="1px" width="100%px"> | ||
<thead> | ||
<tr> | ||
<th>First Name</th> | ||
<th>Last Name</th> | ||
<th width="100">Age Name</th> | ||
<th width="300">Phone Number</th> | ||
<th>Pincode</th> | ||
</tr> | ||
</thead> | ||
<tr> | ||
<td>User First 1</td> | ||
<td>User Last 1</td> | ||
<td>24</td> | ||
<td>1234567891</td> | ||
<td>254578</td> | ||
</tr> | ||
<tr> | ||
<td>User First 2</td> | ||
<td>User Last 2</td> | ||
<td>25</td> | ||
<td>1234564578</td> | ||
<td>194578</td> | ||
</tr> | ||
<tr> | ||
<td>User First 3</td> | ||
<td>User Last 3</td> | ||
<td>25</td> | ||
<td>4574567891</td> | ||
<td>745578</td> | ||
</tr> | ||
</td> | ||
<br> | ||
<br> | ||
</table> | ||
<br> | ||
<br> | ||
<table border="1" width="100%"> | ||
<thead> | ||
<tr> | ||
<th>Course:</th> | ||
<td>Elevation Academy</td> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<th rowspan="2">Contact Number</th> | ||
<td>12345674589</td> | ||
</tr> | ||
<tr> | ||
<td>1245215678</td> | ||
</tr> | ||
</tbody> | ||
|
||
</table> | ||
<br> | ||
<br> | ||
|
||
<table border="1px" width="100%px"> | ||
<thead> | ||
<tr> | ||
<th>Course</th> | ||
<th colspan="3">Contact Number</th> | ||
<th>Date of Conmmencement</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>Evaluation Academy</td> | ||
<td>1243564789</td> | ||
<td>2 August 2020</td> | ||
</tr> | ||
<tr> | ||
<td>Evaluation Acedemy</td> | ||
<td>1234567894</td> | ||
<td>2 August 2020</td> | ||
</tr> | ||
<tr> | ||
<td>Evaluation Academy</td> | ||
<td>123451236987</td> | ||
<td>2 August 2020</td> | ||
</tr> | ||
|
||
</tbody> | ||
</table> | ||
<br><br> | ||
<table border="1" align="center"> | ||
<tbody> | ||
<tr> | ||
<td bgcolor="lightgray">Name</td> | ||
<td>Jonh</td> | ||
<td bgcolor="lightgray">Nick</td> | ||
<td>Time</td> | ||
</tr> | ||
<tr> | ||
<td>Age</td> | ||
<td bgcolor="lightgray">30</td> | ||
<td>20</td> | ||
<td bgcolor="lightgray">35</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<br> | ||
<a href="Index.html">Go Back</a> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
|
||
</head> | ||
<body> | ||
<h1>LISTS</h1><br> | ||
<h3>Ordered Lists</h3><br> | ||
<h4>Numeric</h4> | ||
<ol> | ||
<li>item 1</li> | ||
<li>item 2 </li> | ||
</ol> | ||
<br> | ||
|
||
<h4>Lowercase Letters</h4> | ||
<ol type="a"> | ||
<li>item 1</li> | ||
<li>item 2</li> | ||
</ol> | ||
<br> | ||
<h4>Uppercase Letter</h4> | ||
<ol type="A"> | ||
<li>Item 1</li> | ||
<li>Item 2</li> | ||
</ol> | ||
<br> | ||
<h4>Uppercase Roman Number</h4><br> | ||
<ul> | ||
<li>item 1</li> | ||
<l>item 2</l> | ||
</ul> | ||
<a href="index.html">GO BACK!!</a> | ||
|
||
</body> | ||
</html> |