-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
98 lines (93 loc) · 3.43 KB
/
index.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
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pidgin.wiki</title>
<!-- custom css styles -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Header section -->
<header>
<div class="hamburger">
<span class="ham-1"></span>
<span class="ham-2"></span>
<span class="ham-3"></span>
</div>
<div class="logo">
<a class="logo-text" href="index.html">Pidgin.wiki</a>
</div>
<nav>
<ul>
<!-- <li><a href="">Home</a></li> -->
<li><a href="translator.html">Translator</a></li>
<li><a href="">Contribute</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</nav>
</header>
<!-- end of the header section -->
<!-- start of the main section -->
<div class="main">
<div id="logo">
<img src="assets/Pigin Wiki Logo Pack/3x/[email protected]" alt="">
</div>
<div id="search-section">
<form action="">
<input type="text" name="" id="">
<button>Search</button>
</form>
</div>
<div class="wotd">
<span class="wotd-title">
<h5>Word of the Day: Dec 20, 2020</h5>
<hr>
</span>
<div class="wotd-header">
<h1>Paddiman</h1>
<div class="wotd-header-sub"><span id="span-1">noun</span> <span id="separator">|</span> <span id="span-2"> /Pronunciation/</span></div>
</div>
<div class="wotd-content">
<ol>
<h4>Definitions</h4>
<li>
<p class="definition">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquid asperiores natus fugiat quis!</p>
<div class="example">
<div class="ex">Example</div>
<p class="ex">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Commodi ex sint, similique eveniet, magnam provident rem ad quidem veniam obcaecati quam, doloremque eos.</p>
</div>
<div class="synonyms">
<div class="sy-pill">synonyms:</div>
<a href="" class="sy-pill">synonym 1</a>
<a href="" class="sy-pill">synonym 2</a>
<a href="" class="sy-pill">synonym 3</a>
</div>
<div class="more-info">
<button>More Info</button>
</div>
</li>
</ol>
</div>
</div>
</div>
<!-- end of the main section -->
<!-- footer -->
<footer>
<p>Pidgin.Wiki © 2020</p>
<nav>
<ul>
<li>
<a class="twitter-icon" href=""><img src="assets/icons/icon-twitter.svg" alt=""></a>
</li>
<li>
<a class="facebook-icon" href=""><img src="assets/icons/icons8-facebook-f.svg" alt=""></a>
</li>
</ul>
</nav>
</footer>
<!-- end of footer -->
<script src="js/app.js"></script>
</body>
</html>