-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (94 loc) · 4.07 KB
/
index.html
File metadata and controls
106 lines (94 loc) · 4.07 KB
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
<!DOCTYPE html>
<html>
<!--This is the head sections of my HTML file.
All the information here will not be displayed.
the are there for search engines-->
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This is a Spa web app">
<meta name="keywords" content="Spa, Massage, Beauty, Body, Facials">
<meta name="author" content="Simon Ogbanje">
<title>Home | MadePetal Clinic and Spa</title>
<!-- INTERNAL CSS-->
<style>
header ul{
list-style: none;
}
a{
color: white;
}
.nav-link{
color: gray;
}
</style>
</head>
<body style="margin: 0; padding: 10; height: 100%; width: 100%;">
<header style="background-color: rgb(31, 31, 67); color: white; padding: 0; margin: 0;">
<nav style="display: grid; grid-template-columns: 15% 60% 25%; align-items: center;">
<div>
<h2>MadePetal</h2>
</div>
<ul style="display: flex; justify-content: space-between; ;">
<li><a class="nav-link" href ="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">Contact US</a></li>
</ul>
<ul style="display: flex; justify-content: space-evenly; list-style-type: none;">
<li><button>BOOK A SESSION</button></li>
<li><button>CALL US</button></li>
</ul>
</nav>
</header>
<main>
<!--INTRODUCTION SECTION BEGINS-->
<section id="section" style="display: flex; justify-content: space-evenly; align-items: center;">
<div class="intro title">
<h1>
Transforming Ideas into Immersive Experiences through Innovative Programming
</h1>
<p>
At our company, our vision is to be a leading provider of innovative and transformative technology solutions that enhance the way people experience and engage with ideas.
</p>
</div>
<div class="intro img">
<img src="static/img/intro.png" alt="introductory image">
</div>
</section>
<!-- INTRODUCTION SECTION ENDS-->
</main>
<footer style="background-color: rgb(31, 31, 67); color: white; padding: 0; margin: 0;">
<nav style="display: grid; grid-template-columns: 25% 25% 25% 25%; align-items: flex-start;">
<div>
<h2>MadePetal</h2>
</div>
<ul style="margin: 0; padding: 0;">
<h2>Resources</h2>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">Contact US</a></li>
</ul>
<ul style="margin: 0; padding: 0;">
<h2>Connect with Us</h2>
<li>Facebook</li>
<li>Instagram</li>
<li>Tiktok</li>
</ul>
<div>
<h2>Newsletter</h2>
<p>Input your email.subscribe</p>
</div>
</nav>
</footer>
</body>
</html>
<!--ASSIGNMENT:
Do another project like this and document and structure the codes properly as done today
Dont for get to add comments before and at the end of each elements
-->