-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
160 lines (151 loc) · 5.39 KB
/
about.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About - Makeup Artist</title>
<link rel="icon" href="Makeup images/favicon.png" />
<link rel="stylesheet" href="about.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<section class="header">
<nav>
<img src="Makeup images/logo.png" alt="logo" />
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html" class="about">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
<a href="#" class="button">+1 916-875-2235</a>
</ul>
</nav>
<div class="head">
<h1>About Me</h1>
</div>
</section>
<section class="flex">
<div class="left-side">
<img src="Makeup images/profile-image.jpg" alt="img" />
</div>
<div class="right-side">
<h1>It's All About My Story</h1>
<h2>I Have Been A Passionate Make Up Artist.</h2>
<p>
People often love to know more about a person and his expertise before
opting for certain <br />
services. Same goes with beauty and makeup. You can use this section
to tell people who you <br />
are, your qualification and expertise that make you a better choice
among the rest. Tell them <br />
about your experience and services.
<br />
<br />
You can also list down you achievements or some well-known clients
you’ve worked for. Such <br />
details often attract customers and encourage them to give you a try.
Make sure you add <br />
everything possible in this section.
</p>
<h1>Christina Koller</h1>
<div class="flex">
<h3><i class="fa fa-phone"></i> +1 987 654 321</h3>
<h3><i class="fa fa-envelope envelope"></i> info@example.com</h3>
</div>
</div>
</section>
<section class="team">
<h3>Our Awesome Team</h3>
<h1>We Have Solutions</h1>
<p>This is where you can introduce the experts in your team.</p>
<div class="team-flex">
<div class="artist" id="a1">
<img src="Makeup images/artist1.jpg" alt="img" />
<h2>Christina Koller</h2>
<h4>Owner</h4>
</div>
<div class="artist">
<img src="Makeup images/artist2.jpg" alt="img" />
<h2>Janet Brooks</h2>
<h4>Co. Founder</h4>
</div>
<div class="artist">
<img src="Makeup images/artist3.jpg" alt="img" />
<h2>Maria Garrett</h2>
<h4>Customer Care</h4>
</div>
<div class="background">
<h4>
Book Your <br />
Appointment Now <br />
And Get 25% Off
</h4>
<h5>
Awesome Monsoon Sale - 25% OFF On All Professional Make Up From Only
$59
</h5>
<a href="#" class="button3">BOOK AN APPOINTMENT</a>
</div>
</div>
</section>
<!-- Footer Section -->
<section class="footer">
<div class="footer-left-side">
<img src="Makeup images/logo.png" alt="logo" />
<h1>Christina Koller</h1>
<p>
You can also list down you achievements or some well-known clients
<br />
you’ve worked for. Such details often attract customers and encourage
them <br />
to give you a try. Make sure you add everything possible in this
section.
</p>
<h1>Subscribe For Offers</h1>
<button class="btn">Email Address</button>
<button class="btn1">SUBSCRIBE</button>
</div>
<div class="footer-mid-side">
<h1>Quick Links</h1>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html" class="about">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<h1>Follow Us</h1>
<div class="icons">
<i class="fa fa-instagram"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-linkedin"></i>
<i class="fa fa-google"></i>
</div>
</div>
<div class="footer-right-side">
<h1>Say Hi!</h1>
<h3>info@example.com</h3>
<h3>contact@example.com</h3>
<h1>Call Us</h1>
<h3>Phone: +1 916-875-2235</h3>
<h3>Toll Free: +1 910-626-85255</h3>
<h1>Find Us</h1>
<h3>123 Fifth Avenue, Opp Hut,</h3>
<h3>New York, USA.</h3>
</div>
</section>
<section class="copyright">
<h1>
Copyright © 2023 Makeup Artist Website Design || Prepared by Ms. Web
Developer 💖💖
</h1>
</section>
</body>
</html>