-
Notifications
You must be signed in to change notification settings - Fork 0
/
explore.html
108 lines (100 loc) · 4.33 KB
/
explore.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
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Got World - explore</title>
<link rel="stylesheet" href="style/explore.css">
<link rel="stylesheet" href="style/swiper-bundle.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<div id="menu-container">
<div id="menu">
<h1>GOT World</h1>
<nav>
<ul id="menu-ul">
<li><a href="index.html">صفحه اصلی</a></li>
<li><a href="library.html">کتابخانه</a></li>
<li><a href="map.html">مکانها</a></li>
<li><a href="explore.html">خاندانها</a></li>
<li><a href="explore.html">کاراکتر ها</a></li>
<li><a href="about.html">درباره</a></li>
</ul>
<i class="fa fa-navicon" id="open-menu"></i>
</nav>
</div>
</div>
<div id="title">
<h1> دنبال چی میگردی؟ </h1>
<h2> همین جا سرچ کن <i class="fa fa-arrow-down"></i></h2>
</div>
<div id="search-container">
<div id="search-box">
<i class="fa fa-search"></i>
<input type="text" id="search" placeholder="کاراکتر، مکان، خاندان و غیره">
</div>
<ul id="search-suggestion">
</ul>
</div>
<div id="scroll-to-main">
<div class="ca3-scroll-down-link ca3-scroll-down-arrow" data-ca3_iconfont="ETmodules" data-ca3_icon=""
id="scroll-arrow"></div>
</div>
</header>
<main>
<h1 class="slider-title" id="char-tit">کاراکترها ...</h1>
<div class="swiper mySwiper">
<div class="swiper-wrapper" id="char-swiper-wrapper"></div>
</div>
<h1 class="slider-title">خاندانها ...</h1>
<div class="swiper mySwiper">
<div class="swiper-wrapper" id="house-swiper-wrapper">
</div>
</div>
</main>
<footer>
<div id="pages" class="footer-list-container">
<ul class="footer-list">
<h2>صفحه ها</h2>
<li><a href="explore.html"><i class="fa fa-link"></i>کاراکترها </a></li>
<li><a href="explore.html"><i class="fa fa-link"></i>خاندانها </a></li>
<li><a href="map.html"><i class="fa fa-link"></i>مکانها</a></li>
</ul>
</div>
<div id="contact" class="footer-list-container">
<ul class="footer-list">
<h2>تماس با ما</h2>
<li><a href="[email protected]"><i class="fa fa-drivers-license-o"></i>Email</a></li>
<li><a href="#"><i class="fa fa-phone"></i>09921234567</a></li>
</ul>
</div>
<div id="about">
<p>
این وبسایت یک پروژه متن باز است که توسط <a href="https://mohammadrostamidev.ir"> محمد رستمی</a> و مهدی
رمضانی توسعه یافته. شما میتوانید با مراجه به صفحه گیت هاب منبع پروژه را ببینید.
</p>
<div id="socials">
<span class="social">
<a href="https://youtube.com/@CreativityHousee" target="_blank">
<i class="fa fa-youtube-play"></i>
</a>
</span>
<span class="social">
<a href="https://github.com/creativityHousee" target="_blank">
<i class="fa fa-github"></i>
</a>
</span>
<span class="social">
<a href="https://t.me/CleverDevs" target="_blank">
<i class="fa fa-telegram"></i>
</a>
</span>
</div>
</div>
</footer>
<script type="module" src="script/exlore.js"></script>
<script src="script/swiper-bundle.min.js"></script>
</body>
</html>