-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
94 lines (93 loc) · 3.28 KB
/
blog.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
<!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, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header class="nav__wrapper">
<nav class="nav container">
<input type="checkbox" id="icon-show" />
<a href="/"><img class="logo" src="images/logo-lg.png" alt="" /></a>
<label for="icon-show">
<svg onclick="showmenu()" class="icon icon--primary nav__toggler">
<use href="images/sprite.svg#menu"></use>
</svg>
</label>
<div class="input-group">
<input
type="text"
class="input"
placeholder="Chercher un article......"
/>
<button class="btn btn--accent">
<svg class="icon">
<use href="images/sprite.svg#search"></use>
</svg>
</button>
</div>
<div class="icon__wrapper">
<a href="https://facebook.com/FamCameroun" title="Page Facebook">
<svg class="icon icon--secondary">
<use href="images/brands.svg#facebook"></use>
</svg>
</a>
<a href="https://twitter.com/FAM_Cameroun?s=09" title="Page Twitter">
<svg class="icon icon--secondary">
<use href="images/brands.svg#twitter"></use>
</svg>
</a>
<a
href="https://instagram.com/fam_cameroun?utm_medium=copy_link"
title="Page Instagram"
>
<svg class="icon icon--primary">
<use href="images/brands.svg#instagram"></use>
</svg>
</a>
</div>
<ul class="list nav__list">
<li class="nav__item"><a href="index.html">Accueil</a></li>
<li class="product nav__item collapsible">
<div class="collapsible__header">
<span class="special">PRODUITS </span>
<svg class="icon icon--small icon--primary collapsible__icon">
<use href="images/solid.svg#chevron-down"></use>
</svg>
</div>
<ul class="dropdown collapsible__content">
<li class="nav__item">
<a href="gallery_boxers.html">Boxers</a>
</li>
<li class="nav__item">
<a href="gallery__trousse.html">Trousses de bains</a>
</li>
<li class="nav__item">
<a href="galllery_pyjama.html">Pyjamas</a>
</li>
<li class="nav__item">
<a href="gallery_shirt.html">Pyjashirts</a>
</li>
</ul>
</li>
<li id="blog" class="nav__item">
<a href="https://famcameroun.blogspot.com">blog</a>
<span class="blog__message">BIENTÔT DISPONIBLE</span>
</li>
<li id="about" class="nav__item">
<a href="about.html">à propos</a>
<span class="about__message">BIENTOT DISPONIBLE</span>
</li>
</ul>
</nav>
</header>
<iframe
class="blog-iframe"
src="https://famcameroun.blogspot.com"
frameborder="0"
></iframe>
</body>
</html>