-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (75 loc) · 2.93 KB
/
index.html
File metadata and controls
75 lines (75 loc) · 2.93 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TechMag2000</title>
<link rel="stylesheet" href="./css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,800;1,100&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>TechMag<span class="title">2000</span></h1>
<p>Le magazine qui explore les technologies du futur</p>
</header>
<main>
<div class="intro">
<h1>Notre magazine</h1>
<p>
"I just knew it! Well, I wasn't gonna let you get all the credit and
take all the reward. Hey, I knew there was more to you than money.
Oh, no! Oh, my! Artoo! Can you hear me?""
</p>
</div>
<article>
<h1>Toujours plus de drône dans le ciel</h1>
<p class="information">Publié le <span class="date">10 février 2025</span>
par <span class="author">James Webb</span>
</p>
<p>Your friend is quite a mercenary. I wonder if he really cares about
anything...or anyone. I care! So...what do you think of her, Han?
I'm trying not to, kid! Good... Still, she's got a lot of spirit.
I don't know, what do you think? Do you think a princess and a guy
like me... No!
</p>
<figure>
<img
src="img/drone.jpg"
alt="image d'un drone dans le ciel">
<figcaption>
Le drône est-il le nouveau meilleur ami de l'homme?
</figcaption>
</figure>
<a href="article.html" class="button">En lire plus</a>
</article>
<article>
<h1>Internet, c'était mieux avant</h1>
<p class="information">Publié le <span class="date">7 janvier 2025</span>
par <span class="author">Arthur Poulas</span>
</p>
<p>Yes. Our scout ships have reached Dantooine. They found the remains
of a Rebel base, but they estimate that it has been deserted.
</p>
<figure>
<img
src="img/laptop-white.jpg"
alt="image d'un laptop ouvert et allumé sur un fond d'écran lambda">
<figcaption>
Au moins on peut toujours changer son fond d'écran
</figcaption>
</figure>
<p>
for
some time. They are now conducting an extensive search of the
surrounding systems.
</p>
<a href="article.html" class="button">En lire plus</a>
</article>
</main>
<footer>
<p>eikon // 2021-2022</p>
</footer>
</body>
</html>