This repository was archived by the owner on Jun 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
150 lines (146 loc) · 4.79 KB
/
about.html
File metadata and controls
150 lines (146 loc) · 4.79 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
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <link rel="stylesheet" href="/css/bootstrap.css" /> -->
<!-- bootstrap 3 -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.css" />
<!-- <script src="./js/bootstrap.js"></script> -->
<title>Bootstrap</title>
</head>
<body>
<div class="container navigation">
<div class="row navigation">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<ol class="breadcrumb">
<li>
<a href="index.html">
<span class="glyphicon glyphicon-bookmark"></span> Home
</a>
</li>
<li>Mon Compte</li>
</ol>
<div class="navbar-collapse collapse navbar-right">
<ul class="nav navbar-nav">
<li>
<a href="index.html">
<span class="glyphicon glyphicon-home"></span> Home
</a>
</li>
<li class="active">
<a href="about.html">
<span class="glyphicon glyphicon-phone-alt"></span> A propos
</a>
</li>
<li>
<a href="offers.html">
<span class="glyphicon glyphicon-asterisk"></span> Les offres
</a>
</li>
<li>
<a href="blog.html">
<span class="glyphicon glyphicon-book"></span> Blog
</a>
</li>
<li>
<a href="account.html">
<span class="glyphicon glyphicon-user"></span> Compte
</a>
</li>
<li>
<a href="contact.html">
<span class="glyphicon glyphicon-envelope"></span> Contact
</a>
</li>
</ul>
</div>
</nav>
</div>
<!-- row navigation -->
</div>
<!-- container navigation -->
<div class="container header">
<div class="row header">
<div class="col-xs-4">
<img src="img/logo.png" class="img-responsive" />
</div>
<div class="col-xs-4 col-xs-offset-4">
<blockquote>
<p>C'est pas faux</p>
<small>Karadoc</small>
</blockquote>
</div>
</div>
<!-- row header -->
</div>
<!-- container header -->
<div class="container content">
<div class="row content">
<div class="jumbotron">
<h1>
<span class="glyphicon glyphicon-heart"></span> Vive les Doodoux
</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Expedita
eveniet ipsam saepe ut aspernatur cumque sed nobis veniam? Fuga ad
exercitationem culpa nam voluptas sed labore cumque. Repellat,
molestiae accusamus.
</p>
<button class="btn btn-success">
<span class="glyphicon glyphicon-shopping-cart"></span> Je craque,
je ne peux plus attendre, vite, ouvrez-moi la page!
</button>
</div>
</div>
<!-- row content -->
</div>
<!-- container content -->
<div class="container footer text-right">
<div class="row footer">
<ul class="list-inline">
<li>
<a href="about.html"
><span class="glyphicon glyphicon-chevron-down"></span> Mentions
légales
</a>
</li>
<li>
<a href="offers.html"
><span class="glyphicon glyphicon-thumbs-up"></span>
Partenaires
</a>
</li>
<li>
<a href="blog.html"
><span class="glyphicon glyphicon-copyright-mark"></span>
Conditions générales
</a>
</li>
<li>
<a href="account.html">
<span class="glyphicon glyphicon-euro"></span> Paiement en ligne
</a>
</li>
</ul>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs="
crossorigin="anonymous"
></script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"
></script>
<script src="js/myScript.js"></script>
</body>
</html>