-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (100 loc) · 4.19 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
106
107
108
109
110
111
112
113
114
<!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">
<!-- css link added -->
<link rel="stylesheet" href="styles/style.css">
<!-- google fonts added -->
<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=Work+Sans:wght@600&display=swap" rel="stylesheet">
<title>New-Year-New-Beginnings</title>
</head>
<body>
<!-- heading section start -->
<header>
<div class="banner-content">
<h1>All Thinks Are<br>Possible If You<br>believe</h1>
<p>There are many variations of passages of Lorem Ipsum<br> available, but the majority have suffered alteration in some<br>form, by injected humour, or randomized words.</p>
<button class="btn-primary">Contact Us</button>
</div>
</header>
<!-- main section start -->
<main>
<!-- my failure section start -->
<section class="my-failures">
<div class="person-image">
<img src="images/person.png" alt="">
</div>
<div class="person-content">
<h2>My failures of<br>previous year</h2>
<p>Contrary to popular belief, Lorem Ipsum is not<br>
simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McFlintlock.</p>
<ul>
<li><i class="list-item"> ✓ Contrary to popular belief is not simply.</i></li>
<li><i class="list-item"> ✓ Contrary to popular belief.</i></li>
<li><i class="list-item"> ✓ Contrary to popular, is not simply.</i></li>
<li><i class="list-item"> ✓ Contrary to popular belief, is not simply.</i></li>
<li><i class="list-item"> ✓ Contrary to popular simply.</i></li>
</ul>
</div>
</section>
<!-- my plans section start -->
<section>
<h2 class="my-plan">My Plans</h2>
<div class="plan-title">
<div class="plan-box">
<img src="images/icons/web.png" alt="">
<h3>Web Development</h3>
<p>I want to start</p>
</div>
<div class="plan-box">
<img src="images/icons/js.png" alt="">
<h3>Web Development</h3>
<p>I want to learn</p>
</div>
<div class="plan-box">
<img src="images/icons/smoke.png" alt="">
<h3>Smoking Habit</h3>
<p>I want to end</p>
</div>
<div class="plan-box">
<img src="images/icons/ecom.png" alt="">
<h3>ecommerce</h3>
<p>I want to develop</p>
</div>
</div>
</section>
<!-- watch section start -->
<section>
<div class="watch">
<div class="watch-content">
<h3>Always keep positive mindset</h3>
<button class="btn-primary">Call Now</button>
</div>
</div>
</section>
</main>
<!-- footer section start -->
<footer>
<div class="footer-content-left">
<h2>Future</h2>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomized words.</p>
<ul>
<li>Email: info@gmail.com</li>
<li>Phone : 01777-777777</li>
</ul>
<div class="social-icon">
<img src="images/icons/fb.png" alt="">
<img src="images/icons/twitter.png" alt="">
<img src="images/icons/youtube.png" alt="">
</div>
</div>
<div class="footer-content-right">
<h3>Subscribe</h3>
<input type="email" placeholder="Enter Your Email">
<button class="btn-primary">Subscribe</button>
</div>
</footer>
</body>
</html>