Browse Source

first commit

Kévin Tessier 6 years ago
commit
29ca72b6f5
6 changed files with 52 additions and 0 deletions
  1. 26 0
      index.html
  2. 7 0
      scripts/script.js
  3. 6 0
      styles/media_quieries.css
  4. 13 0
      styles/reset.css
  5. 0 0
      styles/style.css
  6. 0 0
      styles/typo.css

+ 26 - 0
index.html

@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+  <head>
+
+    <title>Title of the document</title>
+    <meta charset="UTF-8">
+    <meta name="description" content="modele">
+    <meta name="keywords" content="HTML,CSS,XML,JavaScript">
+    <meta name="author" content="figureslibres">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+
+<!-- css -->
+    <link rel="stylesheet" href="styles/typo.css">
+    <link rel="stylesheet" href="styles/reset.css">
+    <link rel="stylesheet" href="styles/style.css">
+    <link rel="stylesheet" href="styles/media_queries.css">
+<!-- script -->
+    <script src="scripts.js"></script>
+
+  </head>
+
+  <body>
+
+  </body>
+
+</html>

+ 7 - 0
scripts/script.js

@@ -0,0 +1,7 @@
+function functionName() {
+  // Our function
+}
+
+$(document).ready(function(){
+  //functionName
+});

+ 6 - 0
styles/media_quieries.css

@@ -0,0 +1,6 @@
+@media only screen and (max-width: 768px) {
+    /* For mobile phones: */
+    /* [class*="col-"] {
+        width: 100%;
+    } */
+}

+ 13 - 0
styles/reset.css

@@ -0,0 +1,13 @@
+* {
+    box-sizing: border-box;
+}
+
+img {
+    max-width: 100%;
+    height: auto;
+}
+
+video {
+    width: 100%;
+    height: auto;
+}

+ 0 - 0
styles/style.css


+ 0 - 0
styles/typo.css