Team:Exeter
From 2013.igem.org
(Difference between revisions)
Line 1: | Line 1: | ||
<html> | <html> | ||
<head> | <head> | ||
- | <title> | + | <title>CSS example</title> |
- | + | ... | |
<style type="text/css"> | <style type="text/css"> | ||
- | + | a { | |
- | + | color: green; | |
- | } | + | } |
+ | a.external { | ||
+ | color: red; | ||
+ | } | ||
+ | #bestImage { | ||
+ | border: 1px solid green; | ||
+ | width: 500px; | ||
+ | } | ||
+ | .red { | ||
+ | color: red; | ||
+ | } | ||
+ | ... | ||
+ | </style> | ||
</head> | </head> | ||
<body> | <body> | ||
- | <p>Just some text</p> | + | <p '''style="color: red;">Just some text</p> |
</body> | </body> | ||
</html> | </html> |
Revision as of 18:07, 29 August 2013
Just some text