Skip to content

Commit 3ba1dd4

Browse files
committed
Merge branch 'release/0.1.0' into main
2 parents 2e75927 + 19a6ebd commit 3ba1dd4

File tree

4 files changed

+58
-0
lines changed

4 files changed

+58
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Projet Open source v0.1.0

accueil.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Page d'accueil</title>
8+
</head>
9+
<body>
10+
<h1>Accueil</h1>
11+
<img src="https://www.untruc.net/wp-content/uploads/2020/09/maxresdefault-2.jpg" width="500">
12+
</body>
13+
</html>

contact.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport"
6+
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8+
<title>Contact Page</title>
9+
10+
</head>
11+
<body>
12+
<section id="contact">
13+
<h2>Contact</h2>
14+
15+
<form action="contact.php" style="display: flex; flex-direction: column; max-width: 400px">
16+
<label for="firstname">
17+
Prénom
18+
</label>
19+
<input id="firstname" name="firstname" type="text">
20+
21+
22+
<label for="name">
23+
Nom
24+
</label>
25+
<input id="name" name="name" type="text">
26+
27+
<label for="email">
28+
Email
29+
</label>
30+
<input id="email" name="email" type="text">
31+
32+
33+
<label for="description">
34+
Description
35+
</label>
36+
<textarea id="description" name="description" cols="30" rows="10"></textarea>
37+
38+
<button type="submit">Envoyer</button>
39+
</form>
40+
</section>
41+
</body>
42+
</html>
43+

0 commit comments

Comments
 (0)