diff options
author | dan <[email protected]> | 2023-05-16 18:35:06 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-05-16 18:35:06 -0400 |
commit | c4f178532a20a4900458db15ededc46a14ae1d21 (patch) | |
tree | 6fada4ac941ec80d8e1eac99f5733d5a71c3fd2e /index.html | |
parent | 56a08c8bfdd863d36aba80e7aab15f3feb9cb332 (diff) | |
download | simple-comments-widget-c4f178532a20a4900458db15ededc46a14ae1d21.tar.gz simple-comments-widget-c4f178532a20a4900458db15ededc46a14ae1d21.tar.bz2 simple-comments-widget-c4f178532a20a4900458db15ededc46a14ae1d21.zip |
restyle demo
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 26 |
1 files changed, 21 insertions, 5 deletions
@@ -2,13 +2,29 @@ <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> - <link rel="stylesheet" href="style.css"> + <style> + body { + font-family: Lato, FreeSans, Roboto, Helvetica, Sans-Serif; + } + + #comments-object { + border: solid thin; + box-sizing: border-box; + } + </style> </head> - <h1> Comments Demo Page </h1> + <body> + <h1> Comments Demo Page </h1> - <p>Page demonstrating usage of comments widget.</p> + <p>Demo page for github pages.</p> - <p>All comments on the demo server will be wiped automatically roughly every hour. Don't post anything stupid.</p> + <p>All comments on the demo server will be wiped automatically roughly every hour. Don't post anything stupid.</p> - <object width="100%" height="1000vh" type="text/html" data="client.html"></object> + <object id="comments-object" + width="100%" + height="1000vh" + type="text/html" + data="client.html" + ></object> + </body> </html> |