Created
September 2, 2021 15:55
-
-
Save rajkumar060301/18cb451aee41d06b88819379804c852c to your computer and use it in GitHub Desktop.
this is the table code for htm,this is use for qualification
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
<!DOCTYPE html> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<style type="text/css"> | |
table, th, td{ | |
border: 1Px solid black; | |
border-collapse: collapse; | |
text-align: center; | |
} | |
</style> | |
<meta charset="utf-8"> | |
<title> table tab</title> | |
</head> | |
<body style="background-color: ghostwhite;"> | |
<h3>Education qualification</h3> | |
<table> | |
<tr> | |
<th> | |
SCHOOL/COLLEGE NAME | |
</th> | |
<th> | |
QUALIFICATION | |
</th> | |
<th> | |
TOTAL MARKS | |
</th> | |
<th> | |
PERCENTAGE(%) | |
</th> | |
</tr> | |
<tr> | |
<td> | |
Govt. high School Korha,Katihar | |
</td> | |
<td> | |
Mattric (10<sup>th</sup>) | |
</td> | |
<td> | |
292 | |
</td> | |
<td> | |
58.4 | |
</td> | |
</tr> | |
<tr> | |
<td> | |
+2Govt. Inter College Korha,Katihar | |
</td> | |
<td> | |
12<sup>th</sup> | |
</td> | |
<td> | |
386 | |
</td> | |
<td> | |
77.2 | |
</td> | |
</tr> | |
<tr> | |
<td> | |
Gla University Mathura | |
</td> | |
<td> | |
B.tech(CSE) | |
</td> | |
<td> | |
--- | |
</td> | |
<td> | |
64.1 | |
</td> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment