forked from Azecko/lozangech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.55 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!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>Document</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="apropos">
<h1>A propos</h1>
<img src="https://via.placeholder.com/150"/>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Tempore numquam rerum laborum qui voluptate accusantium, cumque, officia repellat non vitae sunt quibusdam, beatae laudantium voluptatibus earum molestiae hic adipisci! Architecto!</p>
</section>
<section id="spotify">
<h1>Spotify</h1>
<iframe
style="border-radius:12px"
src="https://open.spotify.com/embed/artist/4GJG4mGFPWd48WnXEz4bOJ?utm_source=generator"
width="100%"
height="380"
frameBorder="0"
allowfullscreen=""
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture">
</iframe>
</section>
<section id="contact">
<h1>Me contacter</h1>
<form action="mailto:azecko@gmail.com" method="GET">
<input name="subject" type="text" />
<input name="name" type="text" />
<input name="firstname" type="text" />
<textarea name="body"></textarea>
<input type="submit" value="Send" />
</form>
</section>
</body>
</html>