Skip to content

Instantly share code, notes, and snippets.

@bilal68
Forked from iplabme/answer6.html
Created June 2, 2025 11:06
Show Gist options
  • Save bilal68/0515a0c1873a09e763604a7f4e4f48f2 to your computer and use it in GitHub Desktop.
Save bilal68/0515a0c1873a09e763604a7f4e4f48f2 to your computer and use it in GitHub Desktop.
HTML Page from Telegram AI Bot
<!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