Commit 4c00e1e33c343e980d06e16d025c01fe2cf8de52

Authored by Geoffrey PREUD'HOMME
1 parent b40335a8

Installation Materialize

Showing 3 changed files with 23 additions and 0 deletions   Show diff stats
.gitignore 0 → 100644
... ... @@ -0,0 +1,2 @@
  1 +*materialize*
  2 +fonts
... ...
README.md
1 1 # 10p5-server
2 2 Serveur et client web pour le système de paiment de 10⁵
  3 +
  4 +##Installation
  5 +Installer [Materialize](http://materializecss.com/getting-started.html).
... ...
index.php 0 → 100644
... ... @@ -0,0 +1,18 @@
  1 +<!DOCTYPE html>
  2 + <html>
  3 + <head>
  4 + <!--Import Google Icon Font-->
  5 + <link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  6 + <!--Import materialize.css-->
  7 + <link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
  8 +
  9 + <!--Let browser know website is optimized for mobile-->
  10 + <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  11 + </head>
  12 +
  13 + <body>
  14 + <!--Import jQuery before materialize.js-->
  15 + <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
  16 + <script type="text/javascript" src="js/materialize.min.js"></script>
  17 + </body>
  18 +</html>
... ...