Skip to content

Commit

Permalink
Merge branch 'release/0.1.0' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
deleusec committed Apr 5, 2022
2 parents 2e75927 + 19a6ebd commit 3ba1dd4
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Projet Open source v0.1.0
13 changes: 13 additions & 0 deletions accueil.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page d'accueil</title>
</head>
<body>
<h1>Accueil</h1>
<img src="https://www.untruc.net/wp-content/uploads/2020/09/maxresdefault-2.jpg" width="500">
</body>
</html>
43 changes: 43 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact Page</title>

</head>
<body>
<section id="contact">
<h2>Contact</h2>

<form action="contact.php" style="display: flex; flex-direction: column; max-width: 400px">
<label for="firstname">
Prénom
</label>
<input id="firstname" name="firstname" type="text">


<label for="name">
Nom
</label>
<input id="name" name="name" type="text">

<label for="email">
Email
</label>
<input id="email" name="email" type="text">


<label for="description">
Description
</label>
<textarea id="description" name="description" cols="30" rows="10"></textarea>

<button type="submit">Envoyer</button>
</form>
</section>
</body>
</html>

0 comments on commit 3ba1dd4

Please sign in to comment.