Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lucas #11

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions agile-dev/correction/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.css"/>
<link type="text/css" rel="stylesheet" href="./custom.js"/>
<!--Import your custom.css-->
<link type="text/css" rel="stylesheet" href="css/custom.css"/>
<link type="text/css" rel="stylesheet" href="./custom.css"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>🤙 Yo! application 🤙 | Simplon</title>
Expand Down
105 changes: 105 additions & 0 deletions agile-dev/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@

/* début CSS jorge*/


header {
display:flex;
background-color: black;
height: 200px;
justify-content: space-between;

}

.logo {
display: flex;
justify-content: center;

}

.logo img {
height: 150px;

}

.toplinks a {

display: flex;
justify-content: space-evenly;
margin: 20px;
color:white;
text-decoration: none;
background-color: rgb(214, 65, 19);
padding: 4px 10px;
border-radius: 30px;
font-size: 15px;

}

/* fin CSS jorge*/

/* debut CSS lucas*/

/* css de la premiere section avec le texte */

#section1 {

height: 300px;
width:100%;
display: flex;
justify-content: space-around;
background-color: rgb(214, 65, 19);
color:rgb(255, 255, 255);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
align-items: center;

}

/* je sépare la section en 2 avec les 2 div*/

.div1 {
margin:center;
font-weight: bold;
}

.div2 {

align-self: flex-end;

}

/* mise en liens et en ligne de mon texte */

#section1 .links {


display: flex;
justify-content: space-evenly;
color: rgb(255, 255, 255);
}

#section1 .links a{
background-color: rgb(70, 64, 64);
color: rgb(189, 189, 189);
margin: 10px;
border-radius: 30px;
padding: 15px;

}

h1 {

font-size: 50px;
text-decoration: underline;

}

.div1 img {

margin-left: 28%;
margin-right: -10%;
margin-top: 40px;

}

/* fin CSS lucas */

91 changes: 68 additions & 23 deletions agile-dev/index.html
Original file line number Diff line number Diff line change
@@ -1,25 +1,70 @@
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href=""/>
<!--Import your custom.css-->
<link type="text/css" rel="stylesheet" href=""/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>🤙 Yo! application 🤙 | Simplon</title>
</head>
<body>

<!-- Start code here -->

<!-- finish code here -->

<!--Import materialize.js - JavaScript at end of body for optimized loading-->
<script type="text/javascript" src=""></script>
<!--Import your custom.js-->
<script type="text/javascript" src=""></script>
</body>
</html>

<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="./css/materialize.css" />
<!--Import your custom.css-->
<link type="text/css" rel="stylesheet" href="./css/custom.css" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>🤙 Yo! application 🤙 | Simplon</title>
</head>

<body>

<!-- Start code here -->
<!-- Jorge start here -->

<header>
<div class="logo">
<img src="./img/logo_application.png" alt="yo logo">
</div>

<div class="toplinks">
<a href="" class="nav-link">Get started</a>
<a href="" class="nav-link">About us</a>
<a href="" class="nav-link">Contact</a>
</div>

</header>

<!-- Jorge ends here -->
<!-- Début Code Lucas pour la partie 1-->

<section id="section1">

<div class="div1">
<h1>Yo! Le nouveau moyen de partager !</h1>

<div class="links">
<p><a href="">A quoi ça sert ?</a></p>
<p><a href="">Fonctionnalitées</a></p>
<p><a href="">S'inscire ?</a></p>
</div>

<img src="./img/download_android.png" alt="liens de téléchargement vers android" height="30px">
<img src="./img/download_ios.png" alt="liens de téléchargement vers ios" height="30px">

</div>

<div class="div2">

<img src="./img/iphone_ipad_light.png" alt="iphone et ipad utilisant l'application" width="350px">

</div>

</section>

<!-- Fin Code Lucas pour la partie 1-->
<!-- finish code here -->

<!--Import materialize.js - JavaScript at end of body for optimized loading-->
<script type="text/javascript" src=""></script>
<!--Import your custom.js-->
<script type="text/javascript" src=""></script>
</body>

</html>