-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
108 lines (97 loc) · 3.99 KB
/
home.html
File metadata and controls
108 lines (97 loc) · 3.99 KB
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
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Rotating Words with CSS Animations</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Rotating Words with CSS Animations" />
<meta name="keywords" content="css3, animations, rotating words, sentence, typography" />
<meta name="author" content="Codrops" />
<link href='http://fonts.googleapis.com/css?family=Bree+Serif|Open+Sans+Condensed:700,300,300italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="rotate.css">
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript" charset="utf-8"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="jquery_popup.js"></script>
<style>
.no-cssanimations .rw-wrapper .rw-sentence span:first-child{
opacity: 1;
}
</style>
</head>
<body>
<section class="rw-wrapper">
<h2 class="rw-sentence">
<span>شما در این جا</span>
<br />
<span>می تونید</span>
<div class="rw-words rw-words-1">
<span>کتاب معرفی کنید...</span>
<span>درباره کتاب های موجود نظر بدید...</span>
<span>به کتاب ها نمره بدید...</span>
<span>و...</span>
</div>
<br />
</h2>
</section>
<div class="bmenu">
<h2 style="margin-top:0px;"><font color="#e3e3e3">دسته بندی کتاب ها</font></h2>
<ul>
<li><a href="#">تاریخی</a></li>
<li><a href="#">رمان</a></li>
<li><a href="#">فلسفی</a></li>
<li><a href="#">مذهبی</a></li>
<li><a href="#">علمی</a></li>
<li><a href="#">هنری</a></li>
<li><a href="#">جغرافیا</a></li>
<li><a href="#">سیاسی</a></li>
<li><a href="#">اقتصاد</a></li>
<li><a href="#">ادبیات</a></li>
<li><a href="#">فرهنگی</a></li>
<li><a href="#">آشپزی</a></li>
<li><a href="#">پزشکی</a></li>
<li><a href="#">صنعت</a></li>
</ul>
</div>
<div class="signinpart">
<form method="POST" action="">
<ul>
<li><input type="text" name="user" placeholder="نام کاربری" ></li>
<li><input type="password" name="pass" placeholder="رمز عبور" ></li>
<li><input type="submit" name="login" value="ورود" ></li>
</ul>
</form>
<a href="#" id="onclick">هنوز ثبت نام نکرده اید؟</a>
</div>
<div id="contactdiv">
<form class="form" action="#" id="contact">
<img src="button_cancel.png" class="img" id="cancel"/>
<h3>فرم ثبت نام</h3>
<hr/><br/>
<label>نام: <span>*</span></label>
<br/>
<input type="text" id="firstname" placeholder="first name"/><br/>
<br/>
<label>نام خانوادگی: <span>*</span></label>
<br/>
<input type="text" id="lastname" placeholder="last name"/><br/>
<br/>
<label>نام کاربری: <span>*</span></label>
<br/>
<input type="text" id="username" placeholder="user name"/><br/>
<br/>
<label>رمز عبور:<span>*</span></label>
<br/>
<input type="password" id="password" placeholder="password"/><br/>
<br/>
<label>تکرار رمز عبور:<span>*</span></label>
<br/>
<input type="password" id="confirmpassword" placeholder="confirm password"/><br/>
<br/>
<input type="submit" id="send" value="ارسال"/>
<input type="submit" id="cancel" value="انصراف"/>
<br/>
</form>
</div>
</body>
</html>