-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (66 loc) · 2.69 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
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/all.css">
<title>خانه</title>
</head>
<body>
<div class="main">
<div class="header">
<h1>به سایت ما خوش آمدید</h1>
<span class="search">
<form>
<input type="search" placeholder="جستجو" name="search" required>
<button type="submit"><i class="far fa-search"></i></button>
</form>
</span>
<span class="logo">
<img src="images/logo.png" width="100px">
</span>
</div>
<div class="wrapper">
<div class="sidebar">
<ul class="menu">
<li><a href="index.html" class="active"><i class="fa fa-home" style="font-size: 15px;"></i> صفحه اصلی</a></li>
<li><a href="products.html"><i class="fa fa-circle" style="font-size: 10px;"></i> محصولات</a></li>
<li><a href="about.html"><i class="fa fa-circle" style="font-size: 10px;"></i> درباره ما</a></li>
<li><a href="contact.html"><i class="fa fa-circle" style="font-size: 10px;"></i> تماس با ما</a></li>
</ul>
</div>
<div class="content">
<div class="slider">
<input type="radio" name="slides" id="img1" checked>
<input type="radio" name="slides" id="img2">
<input type="radio" name="slides" id="img3">
<div class="slider-img" id="one">
<img src="images/s_1.jpg">
<label for="img3" class="pre"><i class="fa fa-angle-left big_text white"></i></label>
<label for="img2" class="nxt"><i class="fa fa-angle-right big_text white"></i></label>
</div>
<div class="slider-img" id="two">
<img src="images/s_2.png">
<label for="img1" class="pre"><i class="fa fa-angle-left big_text white"></i></label>
<label for="img3" class="nxt"><i class="fa fa-angle-right big_text white"></i></label>
</div>
<div class="slider-img" id="three">
<img src="images/s_3.png">
<label for="img2" class="pre"><i class="fa fa-angle-left big_text white"></i></label>
<label for="img1" class="nxt"><i class="fa fa-angle-right big_text white"></i></label>
</div>
<div class="slider-counter">
<label for="img1" class="counter" id="count1"></label>
<label for="img2" class="counter" id="count2"></label>
<label for="img3" class="counter" id="count3"></label>
</div>
</div>
</div>
</div>
<div class="footer">
<h3>تمامی حقوق سایت محفوظ است</h3>
</div>
</div>
</body>
</html>