index.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
  6. <title>Atelier web WCS</title>
  7. <!-- CSS -->
  8. <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  9. <link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
  10. <link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
  11. <style>
  12. html {
  13. height: 100%;
  14. }
  15. body {
  16. min-height: 100%;
  17. overflow: hidden;
  18. }
  19. footer {
  20. position: absolute;
  21. bottom: 0;
  22. width: 100%;
  23. }
  24. .col-1-2 {
  25. width: 50%;
  26. position: absolute;
  27. top: 0;
  28. bottom: 0;
  29. }
  30. .col-1-2:first-child {
  31. border-right:1px solid #ddd;
  32. }
  33. .col-1-2:last-child {
  34. left: 50%;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class="main">
  40. <div class="col-1-2">
  41. <nav class="light-blue lighten-1" role="navigation">
  42. <div class="nav-wrapper container"><a id="logo-container" href="#" class="brand-logo">WCS</a>
  43. <ul class="right hide-on-med-and-down">
  44. <li><a href="#">Navbar Link</a></li>
  45. </ul>
  46. <ul id="nav-mobile" class="side-nav">
  47. <li><a href="#">Navbar Link</a></li>
  48. </ul>
  49. <a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
  50. </div>
  51. </nav>
  52. <div class="section no-pad-bot" id="index-banner">
  53. <div class="container">
  54. <h4 class="header center orange-text">J'apprends le JavaScript !</h4>
  55. </div>
  56. </div>
  57. <div class="container">
  58. <div class="section">
  59. <!-- Icon Section -->
  60. <div class="row">
  61. <div class="col s12 m4">
  62. <div class="icon-block">
  63. <h2 class="center light-blue-text"><i class="material-icons">flash_on</i></h2>
  64. <p class="light">We did most of the heavy lifting for you to provide a default stylings that incorporate our custom components. Additionally, we refined animations and transitions to provide a smoother experience for developers.</p>
  65. </div>
  66. </div>
  67. <div class="col s12 m4">
  68. <div class="icon-block">
  69. <h2 class="center light-blue-text"><i class="material-icons">group</i></h2>
  70. <p class="light">By utilizing elements and principles of Material Design, we were able to create a framework that incorporates components and animations that provide more feedback to users. Additionally, a single underlying responsive system across all platforms allow for a more unified user experience.</p>
  71. </div>
  72. </div>
  73. <div class="col s12 m4">
  74. <div class="icon-block">
  75. <h2 class="center light-blue-text"><i class="material-icons">settings</i></h2>
  76. <p class="light">We have provided detailed documentation as well as specific code examples to help new users get started. We are also always open to feedback and can answer any questions a user may have about Materialize.</p>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. <br><br>
  82. </div>
  83. <footer class="page-footer orange">
  84. <div class="footer-copyright">
  85. <div class="container">
  86. Made by <a class="orange-text text-lighten-3" href="http://materializecss.com">Materialize</a>
  87. </div>
  88. </div>
  89. </footer>
  90. </div>
  91. <div class="col-1-2">
  92. <iframe
  93. id="viewport"
  94. src="empty.html"
  95. frameborder="0"
  96. marginheight="0"
  97. marginwidth="0"
  98. height="100%" width="100%"
  99. style="overflow:hidden;width:100%;height:100%;"></iframe>
  100. </div>
  101. </div>
  102. <!-- Scripts-->
  103. <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
  104. <script src="js/materialize.js"></script>
  105. <script src="js/init.js"></script>
  106. <script>
  107. // $('.s6').height( $(window).height() );
  108. </script>
  109. </body>
  110. </html>