-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
111 lines (96 loc) · 4.41 KB
/
index2.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
111
<!DOCTYPE html>
<html lang="en">
<head>
<title>Survie Moddée 1.12.2</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<style>
body,h1,h2,h3,h4,h5 {font-family: "Poppins", sans-serif}
body {font-size:16px;}
.w3-half img{margin-bottom:-6px;margin-top:16px;opacity:0.40;cursor:pointer}
.w3-half img:hover{opacity:1}
</style>
</head>
<body>
<!-- Sidebar/menu -->
<nav class="w3-sidebar w3-red w3-collapse w3-top w3-large w3-padding" style="z-index:3;width:300px;font-weight:bold;" id="mySidebar"><br>
<a href="javascript:void(0)" onclick="w3_close()" class="w3-button w3-hide-large w3-display-topleft" style="width:100%;font-size:22px">Close Menu</a>
<div class="w3-container">
<h3 class="w3-padding-64 gen"><b>Genesis</b></h3>
</div>
<div class="w3-bar-block">
<a href="index2.html" onclick="w3_close()" class="glow-on-hover">Présentation</a>
<br />
<a href="tutorial.html" class="glow-on-hover">Tutoriel & Liens</a>
</div>
</nav>
<!-- Top menu on small screens -->
<header class="w3-container w3-top w3-hide-large w3-red w3-xlarge w3-padding">
<a href="javascript:void(0)" class="w3-button w3-red w3-margin-right" onclick="w3_open()">☰</a>
<span>Genesis</span>
</header>
<!-- Overlay effect when opening sidebar on small screens -->
<div class="w3-overlay w3-hide-large" onclick="w3_close()" style="cursor:pointer" title="close side menu" id="myOverlay"></div>
<!-- !PAGE CONTENT! -->
<div class="w3-main" style="margin-left:340px;margin-right:40px">
<!-- Header -->
<div class="w3-container" style="margin-top:80px" id="showcase">
<h1 class="w3-jumbo"><b>Survie Moddée 1.12.2</b></h1>
<hr style="width:50px;border:5px solid red" class="w3-round">
</div>
<!-- Services -->
<div class="w3-container" id="services" style="margin-top:75px">
<h1 class="w3-xxxlarge w3-text-red"><b>Présentation</b></h1>
<hr style="width:50px;border:5px solid red" class="w3-round">
<p>Vous l'attendiez... Ça y est elle est là : <b>La Survie moddée 1.12.2</b></p>
<p>Bienvenue dans un nouveau monde qui promet de l'aventure et du mystère, où allient les dangers de la nuit, dongeons abandonnés <strike>(enfin presque)</strike>, autres structures et nouvelles créatures...
</p>
<h3><b>Jusqu'à quand pourrez-vous survivre ?</b></h3>
</div>
<!-- Photo grid (modal) -->
<div class="w3-row-padding">
<div class="w3-half">
<img src="11.png" style="width:50%" onclick="onClick(this)" alt="a">
<img src="Minecraft 1.12.2 07_03_2023 11_46_22.png" style="width:50%" onclick="onClick(this)" alt="c">
<img src="Minecraft 1.12.2 07_03_2023 11_47_37.png" style="width:50%" onclick="onClick(this)" alt="e">
<img src="15.png" style="width:50%" onclick="onClick(this)" alt="g">
</div>
<div class="w3-half">
<img src="12.png" style="width:50%" onclick="onClick(this)" alt="b">
<img src="6.png" style="width:50%" onclick="onClick(this)" alt="d">
<img src="1.png" style="width:50%" onclick="onClick(this)" alt="f">
<img src="8.png" style="width:50%" onclick="onClick(this)" alt="h">
</div>
<!-- Modal for full size images on click-->
<div id="modal01" class="w3-modal w3-black" style="padding-top:0" onclick="this.style.display='none'">
<span class="w3-button w3-black w3-xxlarge w3-display-topright">×</span>
<div class="w3-modal-content w3-animate-zoom w3-center w3-transparent w3-padding-64">
<img id="img01" class="w3-image">
<p id="caption"></p>
</div>
</div>
<!-- End page content -->
</div>
<!-- W3.CSS Container -->
<script>
// Script to open and close sidebar
function w3_open() {
document.getElementById("mySidebar").style.display = "block";
document.getElementById("myOverlay").style.display = "block";
}
function w3_close() {
document.getElementById("mySidebar").style.display = "none";
document.getElementById("myOverlay").style.display = "none";
}
// Modal Image Gallery
function onClick(element) {
document.getElementById("img01").src = element.src;
document.getElementById("modal01").style.display = "block";
var captionText = document.getElementById("caption");
captionText.innerHTML = element.alt;
}
</script>
</body>
</html>