-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (67 loc) · 3.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>slider</title>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/>
<link rel="stylesheet" href="./css/sytle.css">
</head>
<body >
<header>
<div class="container">
<nav>
<img src="./img/logo.png" class="logo" alt="">
<div class="links">
<a href="#"> Home </a>
<a href="#"> fetures </a>
<a href="#"> support </a>
<a href="#"> Pricing</a>
<a href="#"> contact</a>
<a href="#" class="last_btn"> Get Support </a>
</div>
</nav>
<div class="slider">
<div class="slide">
<div class="left">
<h1>One Single App To Manage All Your Daily Task</h1>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Lorem ipsum dolor sit amet., iste impedit quo. Neque laudantium eligendi ipsum?</p>
<div class="form">
<input type="text" placeholder="Email address">
<button>Subscribe</button>
</div>
<h5>30 days money back guarantee</h5>
</div>
<div class="right">
<img src="./img/home.jpg" class="main_img" alt="">
</div>
</div>
<!-- second slider -->
<div class="slide">
<div class="left">
<h1>One Single App To Manage All Your Daily Task</h1>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Lorem ipsum dolor sit amet., iste impedit quo. Neque laudantium eligendi ipsum?</p>
<div class="form">
<input type="text" placeholder="Email address">
<button>Subscribe</button>
</div>
<h5>30 days money back guarantee</h5>
</div>
<div class="right">
<img src="./img/home_1.jpg" class="main_img" alt="">
</div>
</div>
</div>
<div class="slider_btns">
<button class="prev-btn"><img src="./img/arrow-left.svg" alt=""><span>Previous</span></button>
<button class="next-btn"><span>Next</span><img src="./img/arrow-right.svg" alt=""></button>
</div>
</div>
</header>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
<script src="./js/app.js"></script>
</body>
</html>