-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariable.html
More file actions
183 lines (164 loc) · 3.47 KB
/
variable.html
File metadata and controls
183 lines (164 loc) · 3.47 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
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<html>
<head>
<title> layout</title>
<style>
:root
{
--main-color:tan;
--head-font:arial;
---p-font:times new roman;
}
body
{
font-family:monotype corsiva;
background:slategray;
margin:0;
padding:0;
}
#wrapper
{
border:0px solid gold;
width:1000px;
background-color:white;
margin:0 auto;
}
#header{
background:var(--main-color);
background:gold;
height:30px;
color:white;
font-family: var(--head-font)
}
#header h1
{
padding:20px 0 0 10px;
font-family:var(--p-font);
}
#menu
{
background:pink;
}
#menu ul
{
padding:0;
margin:0;
}
#menu li
{
display:inline-block;
font-family:var(--p-font);
}
#menu li a
{
display:block;
padding:10px 15px;
text-decoration:none;
color:black;
font-family:var(--p-font);
}
#menu li a:hover{
background:var(--main-color);
background:green;
color:white;
}
#content{
width:800px;
min-width:500px;
float:left;
padding:10px;
box-sizing:border-box;
--m-color:black;
color:var(--m-color);
}
#content a
{
color:var(--m-color);
}
#sidebar
{
background:light blue;
width:200px;
min-height:500px;
float:right;
font-family:var(--head-font);
}
#sidebar a
{
text-decoration:none;
color:black;
}
#footer
{
background:var(--main-color);
padding:5px 10px;
clear:both;
text-align:right;
font-family:var(--head-font);
}
</style>
</head>
<body>
<div id="wrapper">
<div id="header">
<h1>LOUIS VUITTON</h1>
</div>
<div id="menu">
<ul>
<li><a href=" ">Home</a></li>
<li><a href="Gallery.html" target="blank"s>Gallery</a></li>
<li><a href=" shopnow.html" target="blank">Shop now</a></li>
<li><a href=" ">About Us</a></li>
</ul>
</div>
<div id="content">
<h1>Louis Vuitton</h1>
<h2>
<p>Here’s a detailed overview of **Louis Vuitton**:
👜 **About Louis Vuitton**
* **Founded:** 1854
* **Founder:** Louis Vuitton
* **Headquarters:** Paris, France
* **Parent Company:** LVMH (Moët Hennessy Louis Vuitton)
🌟 **What Louis Vuitton is known for**
* One of the world’s leading **luxury fashion houses**.
* Famous for:
* **Leather goods** (handbags, trunks, wallets, belts)
* **Ready-to-wear** clothing
* **Shoes**
* **Watches**
* **Jewelry**
* **Accessories**
* **Fragrances**
* Signature features include:
* The **LV monogram**
* The **Damier (checkerboard) canvas**
* High-quality craftsmanship and timeless designs
🏆 **Why it’s iconic**
* Represents **status, luxury, and exclusivity**.
* Known for its **handmade trunks** in the 19th century, designed to be lightweight and stackable.
* Collaborations with renowned artists and designers (e.g., **Takashi Murakami**, **Virgil Abloh**).
* Strong presence in pop culture and among celebrities.
💡 **Interesting facts**
* Louis Vuitton started as a **trunk maker** for the French elite.
* The brand is one of the **most counterfeited** in the world.
* LV products are never sold at a discount or in outlet stores—official boutiques only.
* The company’s value contributes significantly to LVMH being the world’s largest luxury goods conglomerate.
If you'd like, I can also provide:
✅ A timeline of key moments in Louis Vuitton history
✅ A list of their most iconic products
✅ Current popular collections (e.g., LV x Pharrell Williams)
✅ Louis Vuitton's strategy in India or another country</h2>
</div>
<div id="sidebar">
<ul>
<li><a href=" ">Home</a></li>
<li><a href="Gallery.html">Gallery</a></li>
<li><a href=" ">Shop now</a></li>
<li><a href=" ">About Us</a></li>
</ul>
</div>
<div id="footer">
<marquee> visit our website @ www.louisvuitton.com </marquee>
</div>
</body>
</html>