-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
110 lines (95 loc) · 3.33 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="author" content="Anita JOSEPH">
<link rel="icon" href="icone.png">
<!-- <link rel="stylesheet" href="./styles/index.css"> -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Dev Challenges | Page d'accueil</title>
<style>
body {
background: no-repeat url("./img/computer.jpg");
background-size: cover;
background-position: center;
margin: 0;
padding: 0;
color: white;
height: auto;
display: flex;
flex-direction: column;
}
img {
max-width: 100%;
}
.header {
background-color: rgb(105, 163, 230);
padding: 20px;
text-align: center;
}
.main__container {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin: 10px;
height: 100vh;
}
@media (max-width: 768px) {
.main__container {
height: 100%;
}
}
a img {
width: 199px;
height: 200px;
border-radius: 19px;
}
a img:hover {
-webkit-transform: scale(1.25, 1.25);
transform: scale(1.1, 1.1);
}
a img:hover {
/* change text color on hover */
color: var(--color-blue);
}
a img:hover::after {
opacity: 1;
}
.footer {
display: flex;
justify-content: center;
align-items: center;
background-color: #3e78bb;
font-size: 20px;
color: #fff;
position: relative;
padding: 40px;
}
footer a {
color: #0000c1;
}
</style>
</head>
<body>
<section class="header">
<h1> Responsive design</h1>
</section>
<div class="main__container">
<a href="./404-not-found-master/index.html"><img src="./img/404-screenshot.PNG" alt="404 not found page" /></a>
<a href="./Team-page/index.html"><img src="./img/team-page-screenshot.PNG" alt="Team page" /></a>
<a href="./Recipe-page/index.html"><img src="./img/recipe-screenshot.PNG" alt="Recipe page" /></a>
<a href="./Interior-decoration/index.html"><img src="./img/interior-design-screenshot.PNG" alt="Interior Design" /></a>
<a href="./My-gallery/index.html"><img src="./img/gallery-screenshot.PNG" alt="My Gallery" /></a>
<a href="./Checkout-page-master/index.html"><img src="./img/checkout-page-screenshot.PNG" alt="Checkout page" /></a>
<a href="./Edie-homepage-master/index.html"><img src="./img/edie-homepage-screenshot.png" alt="Edie home page" /></a>
</div>
<div class="footer">
<footer>
Anita JOSEPH @<a href="https://devchallenges.io/"> Dev Challenges</a>
</footer>
</div>
</body>
</html>
</html>