navigation, police, util.js
This commit is contained in:
parent
966604bb1f
commit
6a9f0e0968
9 changed files with 67 additions and 0 deletions
Binary file not shown.
Binary file not shown.
BIN
assets/fonts/Starjedi.ttf
Normal file
BIN
assets/fonts/Starjedi.ttf
Normal file
Binary file not shown.
BIN
assets/fonts/Starjhol.ttf
Normal file
BIN
assets/fonts/Starjhol.ttf
Normal file
Binary file not shown.
|
@ -8,6 +8,16 @@
|
||||||
<title>Characters</title>
|
<title>Characters</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<section class="titre"><a href="index.html">STAR WARS</a></section>
|
||||||
|
<section class="sec-menu">
|
||||||
|
<nav class="nav-menu">
|
||||||
|
<ul class="ul-menu">
|
||||||
|
<li id="films"><a href="films.html">Films</a></li>
|
||||||
|
<li id="planets"><a href="planets.html">Planets</a></li>
|
||||||
|
<li id="characters"><a href="characters.html">Characters</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</section>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
10
films.html
10
films.html
|
@ -8,6 +8,16 @@
|
||||||
<title>Films</title>
|
<title>Films</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<section class="titre"><a href="index.html">STAR WARS</a></section>
|
||||||
|
<section class="sec-menu">
|
||||||
|
<nav class="nav-menu">
|
||||||
|
<ul class="ul-menu">
|
||||||
|
<li id="films"><a href="films.html">Films</a></li>
|
||||||
|
<li id="planets"><a href="planets.html">Planets</a></li>
|
||||||
|
<li id="characters"><a href="characters.html">Characters</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</section>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
10
index.html
10
index.html
|
@ -9,6 +9,16 @@
|
||||||
<title>Accueil</title>
|
<title>Accueil</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<section class="titre"><a href="index.html">STAR WARS</a></section>
|
||||||
|
<section class="sec-menu">
|
||||||
|
<nav class="nav-menu">
|
||||||
|
<ul class="ul-menu">
|
||||||
|
<li id="films"><a href="films.html">Films</a></li>
|
||||||
|
<li id="planets"><a href="planets.html">Planets</a></li>
|
||||||
|
<li id="characters"><a href="characters.html">Characters</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</section>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
10
planets.html
10
planets.html
|
@ -8,6 +8,16 @@
|
||||||
<title>Planets</title>
|
<title>Planets</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<section class="titre"><a href="index.html">STAR WARS</a></section>
|
||||||
|
<section class="sec-menu">
|
||||||
|
<nav class="nav-menu">
|
||||||
|
<ul class="ul-menu">
|
||||||
|
<li id="films"><a href="films.html">Films</a></li>
|
||||||
|
<li id="planets"><a href="planets.html">Planets</a></li>
|
||||||
|
<li id="characters"><a href="characters.html">Characters</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</section>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -1,4 +1,31 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: 'star-wars';
|
||||||
|
src: url("../assets/fonts/Starjedi.ttf");
|
||||||
|
}
|
||||||
|
|
||||||
*{
|
*{
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
font-family: 'star-wars', serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.titre a{
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ul-menu{
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ul-menu li{
|
||||||
|
display: inline;
|
||||||
|
float: left;
|
||||||
|
margin: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ul-menu li a{
|
||||||
|
display: block;
|
||||||
|
padding: 5px;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue