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

code arranged #9

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
138 changes: 138 additions & 0 deletions agile-dev/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@


.container {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
min-height: 100vh;
}

.row {
display: flex;
flex-wrap: wrap;
margin-bottom: 20px;
}

.form-container {
width: 100%;
max-width: 600px; /* Ajustez la largeur maximale selon vos besoins */
margin: 0 auto;
padding: 20px;
background-color: #f1f1f1;
border: 1px solid #ccc;
border-radius: 4px;
}

.input-field {
width: 100%;
margin-bottom: 20px;
}

.photo-field {
display: flex;
flex-direction: column;
align-items: center;
}

.photo-field label {
margin-bottom: 10px;
}

.photo-field input[type="file"] {
margin-bottom: 20px;
}

@media (min-width: 600px) {
.input-field {
width: auto;
margin-right: 20px;
margin-bottom: 0;
}
}



ul.navbar {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}

ul.navbar li {
float: left;
}

ul.navbar li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}

ul.navbar li a:hover {
background-color: #111;
}

ul.navbar li.navbar-logo {
margin-right: 20px;
}

ul.navbar li.navbar-logo img {
height: 40px;
vertical-align: middle;
}
ul.navbar li.navbar-button {
float: right;
}

ul.navbar li.navbar-button a {
background-color: #4CAF50;
}


footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #111;
padding: 20px;
text-align: center;
}

.footer-content {
display: flex;
justify-content: center;
align-items: center;
}

.footer-logo img {
height: 40px;
margin-right: 10px;
}

.footer-copyright {
font-size: 14px;
color: white;
}



.image {
width: 400px;
height: 400px;
text-align: left;
}
.text {
text-align: right;
}

.button {
text-align: right;
}


158 changes: 148 additions & 10 deletions agile-dev/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,160 @@
<!--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=""/>
<link type="text/css" rel="stylesheet" href="./css/materialize.css"/>
<!--Import your custom.css-->
<link type="text/css" rel="stylesheet" href=""/>

<link type="text/css" rel="stylesheet" href="/css/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>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<ul class="navbar">
<li class="navbar-logo"><a href="#home"><img src="./img/logo_application.png" alt="Logo"></a></li>
<li><a href="#home">Accueil</a></li>
<li><a href="#services">Services</a></li>
<li class="navbar-button"><a href="#login">Se connecter</a></li>
</ul>

<footer>
<div class="footer-content">
<div class="footer-logo">
<img src="./img/reviews_logo_1_light.png" alt="Logo 1">
<img src="./img/reviews_logo_2_light.png" alt="Logo 2">
<img src="./img/reviews_logo_3_light.png" alt="Logo 3">
</div>
<div class="footer-copyright">
&copy; 2023. Tous droits réservés.
</div>
</div>
</footer>


<h2>Bénéfice</h2>
<img src="img/iphone_features_light.png" class="image">
<p class="text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent risus leo, dictum i <br> Lorem ipsum
dolor sit amet, consectetur adipiscing elit. Praesent risus leo, dictum i <br> Lorem ipsum dolor sit amet, consectetur
adipiscing elit. Praesent risus leo, dictum i
</p>
<div class="button">
<button>Lorem ipsum</button>
</div>

<!-- Début Code Kogey -->

<div class="container">
<div class="form-container">
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<input placeholder="Placeholder" id="first_name" type="text" class="validate">
<label for="first_name">First Name</label>
</div>
<div class="input-field col s6">
<input id="last_name" type="text" class="validate">
<label for="last_name">Last Name</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="email" type="email" class="validate">
<label for="email">Email</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<img src="" alt="">
</div>
</di>
<section> <div class="container">
<div class="form-container">

</div>

<div class="section-container">
<h2>Win a Phone</h2>
<p> If we’re both going crazy, then we’ll go crazy together, right? So, Jonathan, how was the pull-out? Friends don't lie. Mouth-breather. </p>
<img src="" alt="Win a Phone">
</div>
</div>
</section>
<!-- Fin de Code Kogey -->

</body>

<!--Import materialize.js - JavaScript at end of body for optimized loading-->

<script type="text/javascript" src="/agile-dev/js/materialize.js"></script>
<!--Import your custom.js-->
<script type="text/javascript" src="/agile-dev/js/custom.js"></script>



</html>



















































<!-- 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>