first commit
This commit is contained in:
+26
@@ -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>
|
||||
@@ -0,0 +1,7 @@
|
||||
function functionName() {
|
||||
// Our function
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
//functionName
|
||||
});
|
||||
@@ -0,0 +1,6 @@
|
||||
@media only screen and (max-width: 768px) {
|
||||
/* For mobile phones: */
|
||||
/* [class*="col-"] {
|
||||
width: 100%;
|
||||
} */
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
video {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
Reference in New Issue
Block a user