-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
44 lines (42 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Interactive Radial Menu</title>
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<div class="titre">
<h1>PHP AVANCEE</h1>
<h2>Rojo Valisoa</h2>
<p>Personne voiture</p>
</div>
<!-- partial:index.partial.html -->
<div class="toggle" id="toggle" onclick="menu-expand()">
<i class="fa fa-plus" id="plus"></i>
</div>
<div class="menu" id="menu">
<a href="#">
<i class="fa fa-microphone"></i>
</a>
<a href="#">
<i class="fa fa-user"></i>
</a>
<a href="#">
<i class="fa fa-video-camera"></i>
</a>
<a href="#">
<i class="fa fa-envelope"></i>
</a>
<a href="#">
<i class="fa fa-camera"></i>
</a>
<a href="#">
<i class="fa fa-bell"></i>
</a>
</div>
<!-- partial -->
<script src="assets/script.js"></script>
</body>
</html>