Difference between revisions of "Coursera html/css course"

From MyWiki
Jump to: navigation, search
 
(17 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>
+
&nbsp;
+
<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;
+
}
+
</source>
+

Latest revision as of 16:37, 20 November 2015

Basic html/css
css classes
Introducing bootstrap