-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (93 loc) · 4.26 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="/src/img/logo-citation.jpg">
<title>My Citation | Etape 1</title>
<!-- Bootstrap core CSS -->
<link href="bootstrap-4.3.1/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="src/scss/style.css" rel="stylesheet">
<!-- Font-awesome CDN -->
<script src="https://kit.fontawesome.com/2cfa3d7339.js" crossorigin="anonymous"></script>
<!-- Police Questrial CDN -->
<link href="//fr.allfont.net/allfont.css?fonts=questrial" rel="stylesheet" type="text/css" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Entête -->
<nav class="navbar navbar-expand-lg navbar-dark bg-custom navbar-custom justify-content-between">
<a class="navbar-brand" href="index.html">
<img src="src/img/logo-citation.jpg" width="30" height="30" class="d-inline-block align-top" alt="Logo de l'association">
<p id="titre-marque" class="navbar-brand titre">
My Citation
</p>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggler" aria-controls="navbarToggler" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse text-right" id="navbarToggler">
<ul class="nav navbar-nav ml-auto">
<li class="active nav-item">
<a class="nav-link" href="index.html">
<span class="fas fa-magic"></span>
Etape 1
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="etape2.html">
<span class="fas fa-cog"></span>
Etape 2
</a>
</li>
</ul>
</div>
</nav>
<!-- /.Entête -->
<section class="container">
<div class="row mt-4">
<h1 class="col-12 align-items-center" id="citation">Appuyer sur le bouton</h1>
</div>
<div class="row justify-content-center">
<div class="">
<button onclick="genererCitation()" class="btn btn-see-more">
<span class="pr-2 fas fa-magic" ></span>
Générer une nouvelle citation
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="mt-2">
<div class="row mr-0">
<div class="col-md-8">
P5 parcours "Développeur d'application Frontend" de
<a href="https://openclassrooms.com/fr/paths/60-developpeur-dapplication-frontend"> OpenClassrooms</a>
</div>
<!-- Copyright -->
<div class="footer-copyright col-md-4 ml-auto">
© <a href="https://killianweidner.wordpress.com/">Killian Weidner</a> 2020. Tous droits réservés.
</div>
<!-- Copyright -->
</div>
</footer>
<!-- Footer -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="bootstrap-4.3.1/js/bootstrap.min.js"></script>
<script src="bootstrap-4.3.1/js/jquery.js"></script>
<script src="src/js/etape1.js"></script>
</body>
</html>