-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (104 loc) · 4.47 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!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>New Year New Me</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&family=Work+Sans&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<h1 class="header_title">All Thinks Are Possible If You believe</h1>
<p class="header_description">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words</p>
<button class="btn_contact">
Contact Us
</button>
</header>
<!-- --------------------------------------------------failures section---------------------------------- -->
<section class="failures">
<img class="failures_img" src="images/person.png" alt="" >
<div class="failures_container">
<h3 class="failues_heading">My failures of previous year</h3>
<p class="failures_description">
Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock.
</p>
<ul>
<li><span class="green_check">✓</span> I could not properly follow the daily routine.</li>
<li><span class="green_check">✓</span> Contrary to popular belief.</li>
<li><span class="green_check">✓</span> Contrary to popular , is not simply.</li>
<li><span class="green_check">✓</span> Contrary to popular belief, is not simply.</li>
<li><span class="green_check">✓</span> Contrary to popular simply.</li>
</ul>
</div>
</section>
<!-- -------------------------------------plan section-------------------------------- -->
<section class="plan">
<h1 class="plan_heading">
My Plans
</h1>
<div class="plan_container">
<div>
<img src="images/icons/web.png" alt="">
<div class="img_heading">
Web Development
<p class="img_description">I want to start</p>
</div>
</div>
<div>
<img src="images/icons/js.png" alt="">
<div class="img_heading">
Javascript
<p class="img_description">I want to learn</p>
</div>
</div>
<div>
<img src="images/icons/smoke.png" alt="">
<div class="img_heading">
Smoking Habit
<p class="img_description">I want to end</p>
</div>
</div>
<div>
<img src="images/icons/ecom.png" alt="">
<div class="img_heading">
ecommerce
<p class="img_description">I want to develop</p>
</div>
</div>
</div>
</section>
<!-- --------------------------------------------mindset section-------------------------------- -->
<section class="mindset">
<h1 class="mind_heading">Awlays keep a positive mindset</h1>
<button class="btn_call">
Call Now
</button>
</section>
</body>
<footer>
<div class="footer_container">
<div class="footer_heading">
Future
</div>
<p class="footer_description">
There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words.
</p>
<p class="mail">Email : [email protected]</p>
<p class="phone">Phone : 01500 00 00 00</p>
<img src="images/icons/fb.png" alt="">
<img src="images/icons/twitter.png" alt="">
<img src="images/icons/youtube.png" alt="">
</div>
<div>
<h2 class="subscribe">Subscribe</h2>
<div class="input">
<input type="mail" placeholder="Enter your email">
</div>
<button class="btn_subscribe">
Subscribe
</button>
</div>
</footer>
</html>