first commit

This commit is contained in:
2018-03-16 15:24:05 +01:00
commit 29ca72b6f5
6 changed files with 52 additions and 0 deletions
+26
View File
@@ -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
View File
@@ -0,0 +1,7 @@
function functionName() {
// Our function
}
$(document).ready(function(){
//functionName
});
+6
View File
@@ -0,0 +1,6 @@
@media only screen and (max-width: 768px) {
/* For mobile phones: */
/* [class*="col-"] {
width: 100%;
} */
}
+13
View File
@@ -0,0 +1,13 @@
* {
box-sizing: border-box;
}
img {
max-width: 100%;
height: auto;
}
video {
width: 100%;
height: auto;
}
View File
View File