Best non-CSS HTML template? -
this situation: ap government & politics class, have create wiki pages our "countries" in school's diplomacy games. kind of want blow other kids out of water page. can program well, , have experience html (although not much), modifying template easy me. question is, can nice one-page template simple, yet awesome country homepage? has html (no css), assume won't able snazzy. but, have ideas?
it's impossible enforce "no css" rule can put css <style> block in <head> section of html file.
given css file with:
table{ font-family: 'open sans', helvetica, arial, sans-serif; width:100%; border-collapse:collapse; } td, th { font-size:1em; border:1px solid #98bf21; padding:3px 7px 2px 7px; } you'd copy out of file , stick in <head> section of html file.
<head> <title> awesome country page </title> <style> table{ font-family: 'open sans', helvetica, arial, sans-serif; width:100%; border-collapse:collapse; } td, th { font-size:1em; border:1px solid #98bf21; padding:3px 7px 2px 7px; } </style> </head> hope helps.
Comments
Post a Comment