This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
social.html
77 lines (73 loc) · 2.73 KB
/
social.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="../css/social.css">
<title>Social accordion</title>
</head>
<body>
<div class="container">
<header>
<h1>Follow me on social</h1>
</header>
<ul class="accordion">
<li class="tab">
<div class="social youtube">
<a href="https://www.youtube.com/" target="_blank">YouTube</a>
</div>
<div class="content">
<h1>YouTube</h1>
<p>Follow me on YouTube for tuto on the latest dev techno</p>
</div>
</li>
<li class="tab">
<div class="social facebook">
<a href="https://www.facebook.com/" target="_blank">facebook</a>
</div>
<div class="content">
<h1>facebook</h1>
<p>Follow me on facebook for tuto on the latest dev techno</p>
</div>
</li>
<li class="tab">
<div class="social linkedin">
<a href="https://www.linkedin.com/" target="_blank">linkedin</a>
</div>
<div class="content">
<h1>linkedin</h1>
<p>Follow me on linkedin for tuto on the latest dev techno</p>
</div>
</li>
<li class="tab">
<div class="social github">
<a href="https://www.github.com/" target="_blank">github</a>
</div>
<div class="content">
<h1>github</h1>
<p>Follow me on github for tuto on the latest dev techno</p>
</div>
</li>
<li class="tab">
<div class="social twitter">
<a href="https://www.twitter.com/" target="_blank">twitter</a>
</div>
<div class="content">
<h1>twitter</h1>
<p>Follow me on twitter for tuto on the latest dev techno</p>
</div>
</li>
<li class="tab">
<div class="social instagram">
<a href="https://www.instagram.com/" target="_blank">instagram</a>
</div>
<div class="content">
<h1>instagram</h1>
<p>Follow me on instagram for tuto on the latest dev techno</p>
</div>
</li>
</ul>
</div>
</body>
</html>