-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentationWebDev.html
More file actions
129 lines (115 loc) · 3.93 KB
/
presentationWebDev.html
File metadata and controls
129 lines (115 loc) · 3.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
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vidéo Démonstration Web Développement</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #4c669f, #3b5998, #192f6a);
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
header {
margin: 20px 0;
}
.back-button {
position: fixed;
top: 10px;
left: 10px;
z-index: 1000;
}
.back-button a {
text-decoration: none;
}
.back-button button {
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
font-size: 1em;
}
.back-button button:hover {
background-color: #0056b3;
}
.container {
text-align: left;
padding: 20px;
background: rgba(0, 0, 0, 0.7);
border-radius: 15px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
max-width: 800px;
margin-top: 60px;
}
video {
width: 100%;
height: auto;
border: none;
border-radius: 10px;
margin-bottom: 20px;
}
h1 {
text-align: center;
}
p {
font-size: 1.2em;
line-height: 1.5;
margin-top: 10px;
text-indent: 2em; /* Ajoute une tabulation en début de paragraphe */
}
@media (max-width: 768px) {
.back-button button {
font-size: 0.9em;
padding: 8px 12px;
}
}
</style>
</head>
<body>
<div class="back-button">
<button type="button" onclick="goBack()">Retour</button>
</div>
<header>
<h1>Projet de Fin de Formation Développement Web- Jishosaurus</h1>
</header>
<div class="container">
<video controls>
<source src="video/jishosaurus.mp4" type="video/mp4">
</video>
<p>Dans cette vidéo, je présente le projet que j'ai présenté face à un jury, pour obtenir mon titre de développeur web.</p>
<p>Le nom Jishosaurus est un mot-valise entre 辞書 (jisho) signifiant dictionnaire et le mot thésaurus.</p>
<p>Le site a été réalisé pendant mon temps libre, alors que j'effectuais un stage, craignant que celui-ci ne soit pas perçu comme suffisant car ne pouvant travailler sur du back-end. Une des évolutions possibles serait d'améliorer l'aspect esthétique avec l'aide d'un webdesigner. Malgré tout, le site est tout à fait fonctionnel, bien que plus en ligne.</p>
</div>
<script>
function goBack() {
const fallbackUrl = 'accueil.html';
const ref = document.referrer;
if (ref) {
try {
const baseDir = window.location.href.replace(/[^/]*$/, '');
if (ref.startsWith(baseDir)) {
window.location.href = ref;
return;
}
const refUrl = new URL(ref);
if (refUrl.origin === window.location.origin) {
window.location.href = ref;
return;
}
} catch (e) {
}
}
window.location.href = fallbackUrl;
}
</script>
</body>
</html>