-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (121 loc) · 5.64 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<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/styles.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&family=Work+Sans&display=swap" rel="stylesheet">
</head>
<body>
<!-- Banner -->
<header class="header">
<div>
<h1 class="banner-title">All Thinks Are Possible If You believe</h1>
<p class="banner-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 wordsz</p>
<button class="banner-button">Contact Us</button>
</div>
</header>
<main>
<!-- My failures of the previous year -->
<section class="failures">
<div class="failure-image">
<img src="images/person.png" alt="">
</div>
<div class="failure-analysis">
<div>
<h2 class="failure-title">My failures of previous year</h2>
<p class="failure-sub-title">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 class="failure-list">
<li>Contrary to popular belief, is not simply.</li>
<li>Contrary to popular belief.</li>
<li>Contrary to popular , is not simply.</li>
<li>Contrary to popular belief, is not simply.</li>
<li>Contrary to popular simply.</li>
</ul>
</div>
</div>
</section>
<!-- My Plans -->
<section class="my-plans">
<h3 class="my-plans-title">My Plans</h3>
<div class="plans-info-container">
<div class="plan-info">
<img src="images/icons/web.png" alt="">
<p class="plan-title">Web Development</p>
<p class="plan-description">I want to start</p>
</div>
<div class="plan-info">
<img src="images/icons/js.png" alt="">
<p class="plan-title">Javascript</p>
<p class="plan-description">I want to learn</p>
</div>
<div class="plan-info">
<img src="images/icons/smoke.png" alt="">
<p class="plan-title">Smoking Habit</p>
<p class="plan-description">I want to end</p>
</div>
<div class="plan-info">
<img src="images/icons/ecom.png" alt="">
<p class="plan-title">ecommerce</p>
<p class="plan-description">I want to develop</p>
</div>
</div>
</section>
<!-- Always keep a positive mindset-->
<section class="mindset">
<div>
<h1 class="positive-mindset">Always keep a positive mindset</h1>
<button class="mindset-button">Call Now</button>
</div>
</section>
<!-- Free Trial -->
<section class="free-trial">
<h3 class="free-intro">Ready to take a free trial?</h3>
<p class="free-title">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Possimus, provident. Id, in. Quae,
nesciunt incidunt? Nostrum natus facere repudiandae exercitationem.</p>
<fieldset class="field">
<legend class="field-intro">Sign up for a free account</legend>
<input type="text" placeholder="First Name">
<input type="text" placeholder="Last Name">
<input type="email" placeholder="Email Address">
<input type="password" name="" id="" placeholder="Create password">
<button class="btn-last">Register</button>
</fieldset>
</section>
</main>
<footer>
<!-- Footer -->
<section class="contract">
<div>
<h3 class="contract-title">Future</h3>
<p class="contract-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="contract-description">Email : [email protected]</p>
<p class="contract-description">Phone : 01500 00 00 00</p>
<div>
<a href="">
<img src="images/icons/fb.png" alt="">
</a>
<a href="">
<img src="images/icons/twitter.png" alt="">
</a>
<a href="">
<img src="images/icons/youtube.png" alt="">
</a>
</div>
</div>
<div>
<h3 class="contract-subscribe">Subscribe</h3>
<form action="">
<input type="email" name="" id="" placeholder="Enter your email">
<button class="subscribe-button">Subscribe</button>
</form>
</div>
</section>
</footer>
</body>
</html>