-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplication_wordpress.html
More file actions
142 lines (132 loc) · 3.95 KB
/
Copy pathexplication_wordpress.html
File metadata and controls
142 lines (132 loc) · 3.95 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="fr">
<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">
<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=Pacifico&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="EF.png" type="image/x-icon">
<title>MMI-Wordpress</title>
</head>
<body>
<nav>
<a class="home" href="index.html">HOME</a>
<a class="home" href="MMI.html">Projets MMI</a>
</nav>
<h1>Site Wordpress</h1>
<main>
<div>
<a href="https://www.asw.fabert.butmmi.o2switch.site/" target="_blank">
<div class="imageLien">
Voir le site ↗
</div>
</a>
</div>
<div class="text">
<p>Ce projet avait pour objectif de réalisé, sur Wordpress, le site d'une association d'aide jsp quoi. Le projet à été réalisé en 1è année de MMI
<br>
<br>
Avec mon groupe de quatre camarades nous avons inventés une association fictive pour créer toute l'image et la communication autour de celle-ci.
<br>
<br>
J'ai eue le role de réalisé le site sur Wordpress que j'ai réussi à métriser et modifier pour qu'il s'accorde à notre vision. J'ai écris quelques textes présent sur le site. J'ai aidé à imaginer le motion design que l'on devais créer pour présenter notre association. J'ai aussi créée les réseaux sociaux de l'association où vous pouvez retrouver le motion design du projet!</p>
</div>
</main>
</body>
<style>
*::after {
box-sizing: border-box;
}
body {
background-image: url(marbreMmi.png);
margin: 0;
}
nav {
width: 100%;
display: flex;
justify-content: space-around;
text-align: center;
gap: 10%;
position: relative;
top: 15px;
}
.home {
font-size: 1.5rem;
width: 10vh;
padding: 0px 30px;
text-decoration: none;
color: black;
font-family: 'Pacifico';
}
h1{
text-align: center;
font-family: kanit;
}
main{
display: flex;
flex-direction: row;
margin-top: 3%;
padding: 0 5%;
gap: 2%;
}
div {
width: 50%;
display: flex;
flex-direction: column;
align-items: center;
/* justify-content: center; */
/* line-height: 25px; */
}
.text{
display: flex;
align-items: flex-start;
margin: 50px 0px;
}
p{
font-size: 1.3rem;
font-family:roboto;
/* line-height: 25px; */
}
a{
width: 100%;
height: 100%;
text-decoration: none;
font-size: 2rem;
font-family: kanit;
border-radius: 5px;
}
a:hover {
text-decoration: line-through rgba(138, 137, 137, 0.7) 10px;
}
.imageLien:hover{
text-decoration: underline;
font-size: 2.3rem;
}
.imageLien{
color: white;
font-weight: 900;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
background-image: url("vignetteSae.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
border-radius: 1px;
}
@media screen and (max-width:700px) {
main{
display: flex;
flex-direction: column;
height: 100vh;
}
div{
width:100%;
height:50%;
}
}
</style>
</html>