-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.html
166 lines (155 loc) · 4.87 KB
/
library.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Got world library</title>
<link rel="stylesheet" href="style/library.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</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>از همین حالا کتاب خواندن را شروع کنید</h2>
<h3>لیست کتاب ها ..</h3>
<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>
</div>
</header>
<div id="library">
<h1 class="row-title">: کتاب های گات</h1>
<div class="row">
<section>
<h1>A Game Of Throness</h1>
</section>
<section>
<h1>A Clash Of Kings</h1>
</section>
<section>
<h1>A Storm Of Swords</h1>
</section>
<section>
<h1>A Feast For Crows</h1>
</section>
<section>
<h1>A Dance With Dragons</h1>
</section>
<section>
<h1>The Winds Of Winter</h1>
</section>
<section>
<h1>A Dream Of</h1>
</section>
</div>
<h1 class="row-title">: کتاب های گلی</h1>
<div class="row">
<section>
<h1>A Game Of Throness</h1>
</section>
<section>
<h1>A Clash Of Kings</h1>
</section>
<section>
<h1>A Storm Of Swords</h1>
</section>
<section>
<h1>A Feast For Crows</h1>
</section>
<section>
<h1>A Dance With Dragons</h1>
</section>
<section>
<h1>The Winds Of Winter</h1>
</section>
<section>
<h1>A Dream Of</h1>
</section>
</div>
<h1 class="row-title">: کتاب های صادق</h1>
<div class="row">
<section>
<h1>A Game Of Throness</h1>
</section>
<section>
<h1>A Clash Of Kings</h1>
</section>
<section>
<h1>A Storm Of Swords</h1>
</section>
<section>
<h1>A Feast For Crows</h1>
</section>
<section>
<h1>A Dance With Dragons</h1>
</section>
<section>
<h1>The Winds Of Winter</h1>
</section>
<section>
<h1>A Dream Of</h1>
</section>
</div>
</div>
<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/library.js"></script>
<script type="module" src="script/mainScript.js"></script>
</body>
</html>