-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (104 loc) · 4.88 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Year New Me Project</title>
<link rel="stylesheet" type="text/CSS" href="./styles/styels.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=Work+Sans:wght@600;700;800&display=swap" rel="stylesheet">
</head>
<body>
<header>
</header>
<main>
<section class="banner">
<div class="banner-container">
<h2 class="banner-title">All Thinks Are <br> Possible If You <br> believe</h2>
<p class="banner-description">
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 randomised words
</p>
<button class="btn-primary">Contact Us</button>
</div>
</section>
<section>
<div class="myfopy">
<div class="box1">
<img class="myfopy-img" src="./images/person.png" alt="">
</div>
<div class="box2">
<h2 class="myfopy-title">My failures of previous year</h2>
<p class="myfopy-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>
<div class="options">
<ul>
<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>
</div>
</section>
<section>
<div class="myplans">
<div class="plans">
<img src="./images/icons/web.png" alt="">
<h2 class="plans-title">Web Development</h2>
<p class="plans-description">I want to start</p>
</div>
<div class="plans">
<img src="./images/icons/js.png" alt="">
<h2 class="plans-title">Javascript</h2>
<p class="plans-description">I want to learn</p>
</div>
<div class="plans">
<img src="./images/icons/smoke.png" alt="">
<h2 class="plans-title">Smoking Habit</h2>
<p class="plans-description">I want to end</p>
</div>
<div class="plans">
<img src="./images/icons/ecom.png" alt="">
<h2 class="plans-title">ecommerce</h2>
<p class="plans-description">I want to develop</p>
</div>
</div>
</section>
<section>
<div class="callnow">
<div class="callnow2">
<h2 class="callnow-title">Awlays keep a positive <br> mindset</h2>
<button class="btn-primary">Call Now</button>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-container">
<div class="footer-column">
<h3 class="footer-title">Future</h3>
<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 <br> Email : [email protected] <br> Phone : 01500 00 00 00</p>
<div class="social-links">
<a href="#"><img src="./images/icons/fb.png" alt="Facebook"></a>
<a href="#"><img src="./images/icons/twitter.png" alt="Twitter"></a>
<a href="#"><img src="./images/icons/youtube.png" alt="Youtube"></a>
</div>
</div>
<div class="footer-column">
<h3 class="subscribe-form-title">Subscribe</h3>
<form class="subscribe" action="">
<input type="email" name="email" placeholder="Your Email">
<input class="btn-primary" type="submit" name="submit" value="Subscribe">
</form>
</div>
</div>
<div class="copyright">
<p>2023 © Copyright <span class="web-domain"><a href="/">Web Dev. Portfolio</a></span> - All Right Reserved.</p>
</div>
</footer>
</body>
</html>