|
|
(6 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
− | Example of a very simple nav bar <br>
| + | [[ Basic html/css ]]<br> |
− | <source lang="text">
| + | [[ css classes ]]<br> |
− | | + | [[ Introducing bootstrap ]] <br> |
− | <a href "index.html" >
| + | |
− | Home
| + | |
− | </a>
| + | |
− |
| + | |
− | <a href "contact.html" >
| + | |
− | Contact
| + | |
− | </a>
| + | |
− | <hr></hr>
| + | |
− | | + | |
− | <img src="my.png" width="50%" />
| + | |
− | | + | |
− | </source>
| + | |
− | Adding a stylesheet in a separate file<br>
| + | |
− | <source lang="text">
| + | |
− | <head>
| + | |
− | <title> Georges documentation</title>
| + | |
− | <link rel="stylesheet"
| + | |
− | type="text/css"
| + | |
− | href="style.css"
| + | |
− | />
| + | |
− | | + | |
− | | + | |
− | </head>
| + | |
− | | + | |
− | </source>
| + | |
− | Stuff in the csss file :<br>
| + | |
− | <source lang="text">
| + | |
− | body {
| + | |
− | background: green;
| + | |
− | color: white;
| + | |
− | }
| + | |
− | | + | |
− | a{
| + | |
− | color: grey;
| + | |
− | }
| + | |
− | </source>
| + | |
− | Fonts : <br>
| + | |
− | There are three categories of fonts :<br>
| + | |
− | Serif, Sans-serif and monospace<br>
| + | |
− | <source lang="text">
| + | |
− | h1{
| + | |
− | font-family: "Times new roman" serif;
| + | |
− | font-size: 100px;
| + | |
− | }
| + | |
− | | + | |
− | a:hover{
| + | |
− | | + | |
− | | + | |
− | }
| + | |
− | </source>
| + | |
Latest revision as of 16:37, 20 November 2015
Basic html/css
css classes
Introducing bootstrap