-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (82 loc) · 3.72 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
82
83
84
85
86
87
<!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>Document</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- to make nonsupporting browser support sticky attribute
.list-header {
position: relative;
}
@supports (position: sticky) {
. list-header{
position: sticky;
top: 0;
}
-->
<header>
<nav class="flex-container">
<h1 class="logo navChildren">Taskia</h1>
<button class="navChildren navButton" >Try Now</button>
</nav>
</header>
<main>
<section class="textImg section1 flex-container">
<div class="secText">
<h2>Task Managment and Lists Tools</h2>
<p>We believe that designing product and services in close partnership with our clients is the only way to have a real impact on their business.</p>
<div class="buttons flex-container">
<button class="buttonsChildren cardButton1">Pay 10$ only</button>
<button class="buttonsChildren cardButton2">Try for Free</button>
</div>
</div>
<div class="secImg"></div>
</section>
<!-- section 2 -->
<section class="textImg section2 flex-container flex-container2">
<div class="secText textContainer2">
<div class="section2Text">
<h2>Task Managment and Lists Software Tools</h2>
<p>We believe that designing product and services in close partnership with our clients is the only way to have
a real impact on their business in close partnership with our clients is the only way to have a real impact on their
business</p>
</div>
<div class="buttons flex-container ">
<button class="buttonsChildren cardButton3">Pay 10$ only</button>
</div>
</div>
<div class="secImg sec2Img"></div>
</section>
<!-- section 3 -->
<section class="section2 flex-container">
<div class="sec3image flex-container">
<div class="sec3imagecircle imagecirlce1"></div>
<div class="sec3imagecircle imagecirlce2"></div>
<div class="sec3imagecircle imagecirlce3"></div>
</div>
<div class="sec3TextContainer flex-container ">
<h3 class="sec3text">Trust Us and feel free to try our service</h3>
<h2 class="sec3text sec3parag" style="color:#0060fc;">170901</h2>
<!-- card -->
<div class="secText sec3card">
<h2 class="sec3Children">Get better work done</h2>
<p class="sec3Children">See why millions of people across 195 countries use dash</p>
<div class="buttons flex-container sec3buttons">
<button class="buttonsChildren sec3button1 cardButton1">Name@company.come</button>
<button class="buttonsChildren sec3button2 cardButton2">Try for Free</button>
</div>
</div>
</div>
<div class="sec3image flex-container">
<div class="sec3imagecircle imagecirlce1"></div>
<div class="sec3imagecircle imagecirlce4"></div>
<div class="sec3imagecircle imagecirlce3"></div>
</div>
</section>
</main>
</body>
</html>