-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (126 loc) · 4.63 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Iraloom</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<div class="user">
<img src="https://www.wishtreeinternational.com/img/iraloom-logo.jpg" alt="Logo" />
<h3 class="name">Iraloom</h3>
</div>
<nav class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#fab">Fabrics</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<div id="menu" class="fas fa-bars"></div>
<section class="home" id="home">
<style class="imga">
.home {
background-image: url("https://i.pinimg.com/originals/f4/5d/20/f45d208e04c94f48bd68980d333b61df.jpg");
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size:cover;
background-color: #e2c2b3(0, 38, 255, 0.582);
background-blend-mode: color;
}
</style>
<h1><span>IRAALOOM</span></h1>
<h3>Since 1992</h3>
<p>world's best Fine Frabic Collection</p>
</section>
<section class="fab" id="fab">
<h1 class="heading"><span>Fabrics </span>Info</h1>
<div class="box-container">
<div class="box">
<img
src="https://lh3.googleusercontent.com/proxy/2FSensS4V0kjq8A0WEkRRleujZR1AOGgwPgrH6v1TrtTVXbkat-9VFrbBT9IU59a1ncRVWVLiuefwckuM6k6OWyoh1NbOLtH-Gk1ZnIXYt3k2WuJb385mhMGs5wZum9hzgwvFJQntifat7ttWQ"alt="Cotton"/> </div>
<div class="box">
<img
src="https://i.pinimg.com/originals/5f/5a/a3/5f5aa31a979340d968cdb464985ca344.jpg" alt="Velvet"
/>
</div>
<div class="box">
<img
src="https://i.pinimg.com/736x/7b/02/65/7b0265fa2fd743c60e47de66b66fbab0.jpg" alt="Linen"
/>
</div>
<div class="box">
<img
src="https://i.pinimg.com/originals/0c/4a/38/0c4a38af97db2be7f96097d453bd057b.jpg" alt="Silk"
/>
</div>
<div class="box">
<img
src="https://i.pinimg.com/736x/be/b4/1b/beb41bd9e7b46e694ca0048b0bf80286.jpg" alt="Jersy"
/>
</div>
<div class="box">
<img
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSlcr2hnYvvWnGsz8wTtrlprmYn5K7VfH_YpV5EJ9c_ndIKdrasY6clPlQ7bfr_ziboA_k&usqp=CAU" alt="Chiffon"
/>
</div>
<div class="box">
<img
src="https://i.pinimg.com/736x/dd/b0/78/ddb078a3039ae287272a0265b979216c.jpg"alt="Nylon"
/>
</div>
<div class="box">
<img
src="https://i.pinimg.com/736x/54/0c/c7/540cc7a4ccb615d84e08cbd4401fb7b6.jpg"alt="Rayon"
/>
</div>
<div class="box">
<img
src="https://i.pinimg.com/originals/52/f8/64/52f864ce375df5187edbc7da95cdd439.jpg" alt="Polyester" />
</div>
</div>
</section>
<section class="contact" id="contact">
<h1 class="heading"><span>Contact</span> Us</h1>
<div class="row">
<div class="content">
<h3 class="title">Contact Info</h3>
<div class="info">
<h3><i class="fas fa-envelope"></i> elizebethelzon@gmail.com</h3>
<h3><i class="fas fa-phone"></i>+91-7356647938</h3>
<h3><i class="fas fa-phone"></i> +91-7394812105</h3>
<h3>
<i class="fas fa-map-marker-alt"></i> Kerala, India - 686502.
</h3>
</div>
</div>
<form action="">
<input type="text" placeholder="name" class="box" />
<input type="email" placeholder="email" class="box" />
<input type="text" placeholder="item" class="box" />
<textarea
name=""
id=""
cols="30"
rows="10"
class="box message"
placeholder="message"
></textarea>
<button type="submit" class="btn">
send <i class="fas fa-paper-plane"></i>
</button>
</form>
</div>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>