Created
June 2, 2025 11:03
-
-
Save iplabme/7c62ad6820048acd09f89a0f2799ae75 to your computer and use it in GitHub Desktop.
HTML Page from Telegram AI Bot
This file contains hidden or 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>\n<html lang=\"en\">\n <head>\n <meta charset=\"UTF-8\"/>\n <title>Student List</title>\n <style type=\"text/css\">body {\nfont-family: Arial, sans-serif;\n}\nh1 {\ntext-align: center;\nmargin-top: 20px;\ncolor: black;\nfont-size: 18px;\nfont-weight: bold;\n}\ntable {\nwidth: 100%;\nborder-collapse: collapse;\nborder: 1px solid grey;\n}\ntr th, tr td {\npadding: 5px;\nheight: 30px;\ntext-align: center;\nfont-size: 14px;\ncolor: black;\n}\nthead th {\nbackground-color: #C6FFCC;\n}\ntbody td {\nbackground-color: white;\n}</style>\n </head>\n <body>\n <h1>Student List</h1>\n <table>\n <thead>\n <tr>\n <th>First Name</th>\n <th>Last Name</th>\n <th>Nick Name</th>\n </tr>\n </thead>\n <tfoot></tfoot>\n <tbody>\n <tr>\n <td>Graham</td>\n <td>Bell</td>\n <td>Garry</td>\n </tr>\n </tbody>\n </table>\n </body>\n</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment