HTML and CSS: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
How to make a link open up in a new browser window/tab: | |||
<source lang="html4strict"> | |||
<a href="www.google.com" target="_blank">Click here!</a> | |||
</source> | |||
== HTML5 == | == HTML5 == | ||
Line 8: | Line 12: | ||
</html> | </html> | ||
</pre> | </pre> | ||
== CSS == | |||
How to include an external CSS stylesheet: | How to include an external CSS stylesheet: | ||
<source lang="html4strict"> | <source lang="html4strict"> | ||
<link href="site.css" rel="stylesheet" type="text/css" /> | <link href="site.css" rel="stylesheet" type="text/css" /> | ||
</source> | </source> | ||
Revision as of 17:05, 21 April 2015
How to make a link open up in a new browser window/tab:
<a href="www.google.com" target="_blank">Click here!</a>
HTML5
<!DOCTYPE html> <html> <head></head> <body>Hello World!</body> </html>
CSS
How to include an external CSS stylesheet:
<link href="site.css" rel="stylesheet" type="text/css" />
How to build a menu from css:
http://www.ssi-developer.net/css/menu-rollover-effect_table.shtml
CSS reference