-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (73 loc) · 2.71 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="background_styles.css">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer"
/>
<script src="script.js" defer></script>
<title>Responsive Navbar</title>
</head>
<body>
<div class="background-image">
<div>
<nav class="navbar">
<div class="brand-title"><i class="fas fa-calendar-alt"> </i>STYLE LOFT</div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Calendar</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>
</div>
<div class = "vector"></div>
<div class="text">
<h4 style="font-style: italic;color: aliceblue;">CHOOSE YOUR OUTFITS FOR THE FUTURE</h4>
<h1 class="tagline">ALL Your </h1>
<h3 class="tagline">STYLES ARE HERE</h3>
<p style="font-size: 12px; font-weight: 300;">Use our monthly calender option to set your outfits for the
upcoming days, week, month ....Plan Your Outfits with us
It’s Super simple . Just take a snap of your dress and accesceries.
select thr date and upload.</p>
<input type="file" id="real-file" hidden="hidden"/>
<button class="btn" id="btnFile">ADD OUTFITS <i class="fa-solid fa-chevron-right"></i></button>
<div class="flex-container">
<div>
<i class="fa-2x fa-brands fa-instagram"></i>
</div>
<div style="margin-top: 47px;">
<i class="fa-2x fa-brands fa-facebook"></i>
</div>
<div>
<i class="fa-2x fa-brands fa-telegram"></i>
</div>
</div>
</div>
<div class="div_back">
<img src="images/back_phone.png" width="500" height="800">
</div>
<div class="div1">
<img src="images/jacket.png" width="300" height="300">
</div>
<div class="div2">
<img src="images/shoes.png" width="150" height="150">
</div>
<div class="div3">
<img src="images/watch.png" width="150" height="150">
</div>
<div class = "div4">
<img src="images/women.png" width="280" height="280">
</div>
</div>
</body>
</html>