generated from Templates_CodeFirst/templateHtmlCss
✨📝 Added SAE and CV !
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
ff48438ea5
commit
76293a6748
@ -0,0 +1,11 @@
|
|||||||
|
.layout {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-around;
|
||||||
|
height: 90vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cv{
|
||||||
|
height: 65vh;
|
||||||
|
width: 90vw;
|
||||||
|
}
|
@ -0,0 +1,59 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8"/>
|
||||||
|
<link rel="stylesheet" href="loading.css" type="text/css"/>
|
||||||
|
<link rel="stylesheet" href="common.css" type="text/css"/>
|
||||||
|
<link rel="stylesheet" href="background.css" type="text/css"/>
|
||||||
|
<link rel="stylesheet" href="curriculum-vitae.css" type="text/css"/>
|
||||||
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||||
|
<title>Portfolio de Nicolas BLONDEAU</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!--Loading animation-->
|
||||||
|
<div class="loader loader-active">
|
||||||
|
<div class="loading">
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--The NavBar-->
|
||||||
|
<nav class="navMenu">
|
||||||
|
<a href="index.html">A propos</a>
|
||||||
|
<a href="index.html">Formation</a>
|
||||||
|
<a href="index.html">Compétences</a>
|
||||||
|
<a href="divers.html">Divers</a>
|
||||||
|
<a href="contact.html">Contact</a>
|
||||||
|
<a href="credits.html">Crédits</a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<div class="layout">
|
||||||
|
<section>
|
||||||
|
<h1 class="title">Mon Curriculum Vitae :</h1>
|
||||||
|
<embed id="cv" type="application/pdf" src="./ressources/CV.pdf"/>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!--When the whole page is loaded, it removes the class "loader-active"
|
||||||
|
from the loader, so it disappears (CSS in loader : display: none;)-->
|
||||||
|
<script>
|
||||||
|
window.addEventListener("load", () => {
|
||||||
|
document.querySelector(".loader").classList.remove("loader-active");
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 125 KiB |
Binary file not shown.
Loading…
Reference in new issue