-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (102 loc) · 4.16 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
<!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>Odin Landing Page</title>
<!-- Main_CSS_File -->
<link rel="stylesheet" href="./css/styles.css">
<!-- Font_Awesome_Library -->
<link rel="stylesheet" href="css/all.min.css">
<!-- Google_Font -->
<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=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Start_Header -->
<header>
<div class="container">
<h3 id="logo">Logo</h3>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- End_Header -->
<!-- Start_Hero_Section -->
<section id="hero">
<div class="container">
<div id="about">
<h1>Website Ipsum</h1>
<p id="description">We are a creative company, we work together to code and design awesome websites for all people.</p>
<a href="#" class="btn">Start a project</a>
</div>
<div id="img-wrapper">
<!-- <img src="https://img.freepik.com/free-vector/coding-workshop-concept-illustration_114360-8192.jpg?w=996&t=st=1669150524~exp=1669151124~hmac=ff1c1047652d4db629067bae3608c71e61e9316db8d0e139ea2923e19edfdcb0"> -->
<img src="images/hero-img.jpg" alt="team">
</div>
</div>
</section>
<!-- End_Hero_Section -->
<!-- Start_Features_Section -->
<section id="features">
<div class="container">
<h2>Some of our key features</h2>
<div id="feat-info">
<div class="feat">
<i class="fa-solid fa-pen-ruler fa-6x"></i>
<p>Our design is crafted with very high quality.</p>
</div>
<div class="feat">
<i class="fa-solid fa-briefcase fa-6x"></i>
<p>We are available 7/24 with non stop of work.</p>
</div>
<div class="feat">
<i class="fa-solid fa-laptop-code fa-6x"></i>
<p>Our code is clean and professional.</p>
</div>
<div class="feat">
<i class="fa-solid fa-gauge-high fa-6x"></i>
<p>Speed and performance is our target.</p>
</div>
</div>
</div>
</section>
<!-- End_Features_Section -->
<!-- Start_Quote_Section -->
<section id="quote">
<div class="container">
<blockquote>
Get closer than ever to your customers. So close, in fact, that you tell them what they need well before they realize it themselves.
</blockquote>
<p class="quote-author">– Steve Jobs</p>
</div>
</section>
<!-- End_Quote_Section -->
<!-- Start_Contact_Section -->
<section id="contact">
<div class="container">
<div id="contact-info">
<div>
<h3>Contact Us</h3>
<p>To get in touch with our latest news, sign up for our weekly newsletters.</p>
</div>
<a class="btn" href="#">Sign up</a>
</div>
</div>
</section>
<!-- End_Contact_Section -->
<!-- Start_Footer -->
<footer>
<p>© Copyright 2023, Odin Landing Page Project</p>
</footer>
<!-- End_Footer -->
</body>
</html>