-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
40 lines (39 loc) · 1.61 KB
/
menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="src/css/menu.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.0"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@200;300;400;500;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-NWZ5149KH0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-NWZ5149KH0');
</script>
<title>Kwiga Kubwacu</title>
<meta name="description" content="Kubwacu est une entreprise burundaise qui conçoit et vend des logiciels et des applications pour les entreprise et pour les particuliers.">
</head>
<body>
<div id="app">
<c-header></c-header>
<main>
</main>
<c-footer></c-footer>
</div>
<script src="includes/header.js"></script>
<script src="includes/footer.js"></script>
<script>
const app = new Vue({
el: "#app"
})
</script>
</body>
</html>