-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
56 lines (49 loc) · 1.42 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body id="body1">
<div class="container-fluid">
<!-- LOGO SOMMAIRE-->
<div class="row">
<div class="col-lg-offset-3 col-lg-6">
</Br></Br></Br>
<div class="row">
<div class= "col-lg-offset-6 col-lg-6">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Accueil</a></li>
<li><a href="salon.php">Salons</a></li>
<li><a href="map.php">Map</a></li>
</ul>
</div>
</div>
<div class="row">
<form method="Post" action="search.php">
<div class="form-group">
<div class="input-group input-group-lg icon-addon addon-lg">
<input type="text" placeholder="Saisissez des mots-clés" name="recherche" id="schbox" class="form-control input-lg">
<i class="icon icon-search"></i>
<span class="input-group-btn">
<button type="submit" class="btn btn-inverse">Rechercher</button>
</span>
</div>
</div>
</form>
</div>
<div class="row">
<div class= "col-lg-offset-1 col-lg-10" id="blocnews">
LISTES DE NEWS
</div>
</div>
</div>
<div class="col-lg-offset-1 col-lg-2" id="discutinstant">
<?php include("indexchat.php"); ?>
</div>
</div>
</div>
</body>
</html>
<?php include("tweets.php")?>