Browse Source

Coursera code, dispatched to Meteor directories.

Frederic G. MARAND 8 years ago
parent
commit
cca728458c

+ 5 - 2
meteor_index.html

@@ -1,11 +1,14 @@
 <head>
   <title>Course</title>
+  <link rel="stylesheet" href="/css/bootstrap.css" />
 </head>
 
-<body>
-  <ul>
+<body class="container">
+  <ul class="list-group">
     <li><a href="/aboutme.html">About me</a></li>
     <li><a href="/contact.html">Contact</a></li>
     <li><a href="/index.html">Index</a></li>
+    <li><hr /></li>
+    <li><a href="/css/styles.css">Styles</a></li>
   </ul>
 </body>

+ 8 - 29
public/aboutme.html

@@ -1,44 +1,23 @@
 <html>
 	<head>
 		<title></title>
+    <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
 	</head>
+
 	<body>
-		<a 
-		href="index.html">
-			Home
-		</a>
+		<a href="index.html">Home</a>
 		 &nbsp;
-		<a 
-		href="aboutme.html">
-			About me 
-		</a>
+		<a href="aboutme.html">About me</a>
 		&nbsp;
-		<a 
-		href="contact.html">
-			Contact me 
-		</a>
+		<a href="contact.html">Contact me</a>
 
 		<hr></hr>
 
 		<h1>All about me</h1>
 
-		<a href="myk.png"> 
-		  <img 
-		     src="myk.png" 
-		     width="50%"
-		  />
-		 </a>
+		<a href="images/myk.png">
+		  <img src="images/myk.png" width="50%" />
+    </a>
 		<h3>This is me looking the other way</h3>
-
 	</body>
 </html>
-
-
-
-
-
-
-
-
-
-

+ 6 - 15
public/contact.html

@@ -1,28 +1,19 @@
 <html>
 	<head>
 		<title></title>
+		<link rel="stylesheet" type="text/css" href="css/no.css" />
 	</head>
+
 	<body>
-		<a 
-		href="index.html">
-			Home
-		</a>
+		<a href="index.html">Home</a>
 		 &nbsp;
-		<a 
-		href="aboutme.html">
-			About me 
-		</a>
+		<a href="aboutme.html">About me</a>
 		&nbsp;
-		<a 
-		href="contact.html">
-			Contact me 
-		</a>
+		<a href="contact.html">Contact me</a>
 
 		<hr></hr>
 
-		<h1>
-		Contact details
-		</h1>
+		<h1>Contact details</h1>
 
 		Here is my address:
 		<ul>

File diff suppressed because it is too large
+ 1615 - 0
public/css/bootstrap.css


+ 5 - 0
public/css/styles.css

@@ -0,0 +1,5 @@
+/* use this to put borders around things... */
+.thin_border {
+  border: 1px solid black; }
+
+/*# sourceMappingURL=styles.css.map */

+ 7 - 0
public/css/styles.css.map

@@ -0,0 +1,7 @@
+{
+"version": 3,
+"mappings": "AAAA,8CAA8C;AAC9C,YAAa;EACZ,MAAM,EAAE,eAAe",
+"sources": ["styles.scss"],
+"names": [],
+"file": "styles.css"
+}

+ 4 - 0
public/css/styles.scss

@@ -0,0 +1,4 @@
+/* use this to put borders around things... */
+.thin_border {
+	border: 1px solid black;
+}

BIN
public/images/myk.png


+ 18 - 30
public/index.html

@@ -1,44 +1,32 @@
 <html>
 	<head>
 		<title>This is my first web page</title>
+    <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
+  	<link rel="stylesheet" type="text/css" href="css/styles.css" />
 	</head>
+
 	<body>
-		<a 
-		href="index.html">
-			Home
-		</a>
+		<a href="index.html">Home</a>
 		 &nbsp;
-		<a 
-		href="aboutme.html">
-			About me 
-		</a>
+		<a href="aboutme.html">About me</a>
 		&nbsp;
-		<a 
-		href="contact.html">
-			Contact me 
-		</a>
+		<a href="contact.html" class="greenlink">Contact me</a>
 
-		<hr></hr>
+		</hr>
 
-		<h1>This is my first web page</h1>
+    <div class="container">
+      <h1>This is my first web page</h1>
 
-		<h2>
-			This is the sub-title.
-		</h2>
+      <div class="row">
+        <div class="col-md-3 thin_border">
+          Some content here for panel 1
+        </div>
 
-		<p>
-			the first paragraph
-		</p>
+        <div class="col-md-9 thin_border">
+          Some content here for panel 2
+        </div>
+      </div>
+    </div>
 
-		<p>
-			the second paragraph
-		</p>
 	</body>
 </html>
-
-
-
-
-
-
-

BIN
public/myk.png


Some files were not shown because too many files changed in this diff