-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 966 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name='viewport'content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0'>
<!--Ceci permet de définir le titre de la page -->
<title>Cute Cat Pictures</title>
<link rel="shortcut icon" href="img/Icons/icon150.png" />
<link rel="apple-touch-icon" href="img/Icons/icon150.png" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<div id="select" class="visible">
<div id="cat">Cat</div>
<div id="puppy">Puppy</div>
<div id="both">Both</div>
</div>
<div id="main-content">
<h1 id="title">Show</h1>
</div>
</body>
</html>