-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathportfolio.html
149 lines (139 loc) · 4.88 KB
/
portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio - Makeup Artist</title>
<link rel="icon" href="Makeup images/favicon.png" />
<link rel="stylesheet" href="portfolio.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">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html" class="portfolio">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>Portfolio</h1>
</div>
</section>
<section class="gallery">
<div class="flex">
<img src="Makeup images/Makeup-doingmakeup-free-img.jpg" alt="img" />
<img src="Makeup images/Bride-gallery-free-img.jpg" alt="img" />
<img
src="Makeup images/Makeup-Girldoingmakeup-free-img.jpg"
alt="img"
/>
<img src="Makeup images/Model-makeup-gallery-free-img.jpg" alt="img" />
</div>
<div class="flex">
<img src="Makeup images/Hair-color-free-img.jpg" alt="img" />
<img src="Makeup images/Nail-paint-free-img.jpg" alt="img" />
<img src="Makeup images/Working-on-makeup-free-img.jpg" alt="img" />
<img src="Makeup images/logo.png" alt="logo" class="logo" />
</div>
</section>
<section class="background">
<div class="sides">
<div class="front-side">
<img src="Makeup images/sale-badge.png" alt="img" />
</div>
<div class="mid-side">
<h1>Book Your Appointment Now And Get 25% Off</h1>
<h2>
Awesome Monsoon Sale - 25% OFF On All Professional Make Up From Only
$59
</h2>
</div>
<div class="last-side">
<a href="#" class="button3">BOOK AN APPOINTMENT</a>
</div>
</div>
</section>
<section class="bef">
<div class="before">
<img src="Makeup images/before1.jpg" alt="img" />
<h1>Before</h1>
</div>
<div class="before">
<img src="Makeup images/after1.jpg" alt="img" />
<h1>After</h1>
</div>
<div class="before">
<h1>Before</h1>
<img src="Makeup images/before2.jpg" alt="img" />
</div>
<div class="before">
<h1>After</h1>
<img src="Makeup images/after2.jpg" alt="img" />
</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">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html" class="portfolio">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>