-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
771 lines (579 loc) · 14.2 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
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
<!DOCTYPE html>
<html lang="en">
<head>
<title>Watch&Cook</title>
<link href="https://fonts.googleapis.com/css2?family=Gabriela&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Cabin:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
html {
font-size: 62.5%;
font-family: 'Roboto', sans-serif;
}
li {
list-style: none;
}
a {
text-decoration: none;
}
.header{
border-bottom: 1px solid #E2E8F0;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 15px;
position: fixed;
width: 100%;
background: white;
margin-left: -1%;
margin-top: -1%;
z-index: 1000;
}
.nav-menu {
display: flex;
justify-content: space-between;
align-items: center;
padding-right: 50px;
}
.nav-item {
margin-left: 50px;
}
.nav-link {
font-size: 17px;
font-weight: 400;
color: #475569;
text-transform: uppercase;
letter-spacing: 2px;
}
.nav-link:hover{
color: #482ff7;
}
.nav-logo {
font-size: 30px;
font-weight: 500;
color: #482ff7;
padding-left: 30px;
font-family: system-ui;
}
.recipie1{
padding-left: 44px;
}
.recipie1 h1 {
font-size: 40px;
font-family: system-ui;
font-weight: 500;
padding-bottom: 5%;
}
.recipie1 img {
width: 500px;
height: 279px;
}
.overlay {
background: black;
height: 279px;
width: 500px;
position: relative;
top: -289px;
opacity: 0.4;
margin-bottom: -295px;
}
.content2 .overlay {
background: black;
height: 279px;
width: 500px;
position: relative;
top: -281px;
left: 56%;
opacity: 0.4;
margin-bottom: -295px;
}
.content1 .cont-part {
position: relative;
top: -300px;
margin-left: 625px;
}
.recipie1 .content1 .cont-part h1 {
font-size: 30px;
font-family: system-ui;
font-weight: 500;
padding-bottom: 0;
}
.recipie1 .content2 .cont-part h1 {
font-size: 30px;
font-family: system-ui;
font-weight: 500;
padding-bottom: 0;
}
.content1 .cont-part p {
font-size: 25px;
width: 92%;
text-align: justify;
line-height: 35px;
margin-bottom: -170px;
font-family: 'Cabin', sans-serif;
}
.content2 img {
position: relative;
left: 56%;
}
.content2 .cont-part p {
font-size: 25px;
text-align: justify;
line-height: 35px;
margin-bottom: -170px;
font-family: 'Cabin', sans-serif;
}
.content2 .cont-part {
position: relative;
top: -300px;
width: 50%;
}
.recipie1 button {
background: #482ff7;
color: white;
font-size: 20px;
font-family: system-ui;
border: 1px solid #482ff7;
border-radius: 50px;
padding: 5px 10px 5px 10px;
position: relative;
left: -325px;
top: -22px;
transition: transform 450ms;
z-index: 100;
}
.recipie1 button:hover {
transform: scale(1.05);
border: 1px solid #482ff7;
background: none;
}
.recipie1 .content2 button {
background: #482ff7;
color: white;
font-size: 20px;
font-family: system-ui;
border: 1px solid #482ff7;
border-radius: 50px;
padding: 5px 10px 5px 10px;
position: relative;
left: -6px;
top: -34px;
margin-left: 72.1%;
transition: transform 450ms;
z-index: 100;
}
.recipie1 .content2 button:hover {
transform: scale(1.05);
border: 1px solid #482ff7;
background: none;
}
.recipie1 .content1 button a{
color: white;
}
.recipie1 .content2 button a{
color: white;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
margin: 8px;
}
.about-section {
padding: 50px;
text-align: center;
background-color: #474e5d;
color: white;
}
.container {
padding: 0px 25px 1px 25px;
}
.title {
color: grey;
}
.about h2 {
font-size: 40px;
position: relative;
left: -40%;
font-family: system-ui;
font-weight: 600;
}
.card .container h2 {
font-size: 35px;
position: relative;
left: 0;
}
.card .title {
color: grey;
font-size: 25px;
margin-bottom: 10%;
}
.column {
float: right;
width: 33.3%;
margin-bottom: 16px;
padding: 0 8px;
position: relative;
left: -15%;
}
.card p {
font-size: 20px;
font-family: system-ui;
line-height: 10px;
}
.about .button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #482ff7;
opacity: 0.8;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 20px;
text-transform: uppercase;
}
.about .button:hover {
background-color: white;
color: #482ff7;
border: 1px solid #482ff7;
}
.banner {
width: 101.5%;
margin-left: -1%;
background-image: url(img/banner1.jpg);
height: 500px;
background-size: cover;
margin-bottom: 5%;
}
.banner-overlay {
background: black;
height: 500px;
opacity: 0.4;
}
.banner p {
font-size: 40px;
width: 50%;
position: relative;
top: -80%;
left: 5%;
color: white;
font-family: 'Gabriela', serif;
font-weight: 800;
}
p.email-p {
margin-top: 10%;
}
.card img {
width: 100%;
}
p.email-p i{
font-size: 24px;
}
.banner button {
position: relative;
top: -80%;
left: 5%;
background: #482ff7;
color: white;
padding: 3px 22px 5px 22px;
font-size: 25px;
border-radius: 50px;
border: 1px solid #482ff7;
font-family: system-ui;
}
.banner button:hover{
transform: scale(1.05);
border: 1px solid #482ff7;
background: none;
}
.banner button a {
color: white;
font-family: 'Cabin';
}
.main {
max-height: 550px;;
background-color: #292c2f;
color: white;
font-size: 38pt;
text-align: center;
line-height: 550px;
}
footer{
position: fixed;
bottom: 0;
}
.footer-distributed{
background-color: #292c2f;
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
box-sizing: border-box;
width: 101.6%;
text-align: left;
font: bold 16px sans-serif;
padding: 55px 50px;
margin-top: 80px;
position: relative;
margin-left: -1%;
padding-left: 8%;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: inline-block;
vertical-align: top;
}
.footer-distributed .footer-left{
width: 40%;
}
.footer-distributed h3{
color: #ffffff;
font: normal 36px 'Cookie', cursive;
margin: 0;
}
.footer-distributed h3 span{
color: #5383d3;
}
.footer-distributed .footer-links{
color: #ffffff;
margin: 20px 0 12px;
padding: 0;
margin-left: 16%;
}
.footer-distributed .footer-links a{
display:inline-block;
line-height: 1.8;
text-decoration: none;
color: inherit;
}
.footer-distributed .footer-company-name{
color: #8f9296;
font-size: 14px;
font-weight: normal;
margin: 0;
margin-left: 20%;
}
.footer-distributed .footer-center{
width: 35%;
margin-left: -3%;
}
.footer-distributed .footer-center i{
background-color: #33383b;
color: #ffffff;
font-size: 25px;
width: 38px;
height: 38px;
border-radius: 50%;
text-align: center;
line-height: 42px;
margin: 10px 15px;
vertical-align: middle;
}
.footer-distributed .footer-center i.fa-envelope{
font-size: 17px;
line-height: 38px;
}
.footer-distributed .footer-center p{
display: inline-block;
color: #ffffff;
vertical-align: middle;
margin:0;
}
.footer-distributed .footer-center p span{
display:block;
font-weight: normal;
font-size:14px;
line-height:2;
}
.footer-distributed .footer-center p a{
color: #5383d3;
text-decoration: none;;
}
.footer-distributed .footer-right{
width: 20%;
margin-top: 1.3%;
}
.footer-distributed .footer-company-about{
line-height: 20px;
color: #92999f;
font-size: 15px;
font-weight: normal;
margin: 0;
}
.footer-distributed .footer-company-about span{
display: block;
color: #ffffff;
font-size: 18px;
font-weight: bold;
margin-bottom: 20px;
}
.footer-distributed .footer-icons{
margin-top: 25px;
}
.footer-distributed .footer-icons a{
display: inline-block;
width: 35px;
height: 35px;
cursor: pointer;
background-color: #33383b;
border-radius: 2px;
font-size: 20px;
color: #ffffff;
text-align: center;
line-height: 35px;
margin-right: 3px;
margin-bottom: 5px;
}
p.footer-company-about {
width: 130%;
}
.footer-left .nav-logo {
color: #5383d3;
font-size: 40px;
margin-left: 3%;
}
i.fa.fa-facebook:hover {
color: #1873eb;
}
i.fa.fa-twitter:hover {
color: #329cea;
}
i.fa.fa-instagram:hover {
color: #d62977;
}
i.fa.fa-whatsapp:hover {
color: #24cc63;
}
</style>
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="#" class="nav-logo">Watch&Cook</a>
<ul class="nav-menu">
<li class="nav-item">
<a href="#" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#recipie" class="nav-link">Recipies</a>
</li>
<li class="nav-item">
<a href="teams.html" class="nav-link" target="_blank">about</a>
</li>
<li class="nav-item">
<a href="feedback.html" class="nav-link" target="_blank">Feedback</a>
</li>
</ul>
</nav>
</header>
<div class="banner" id="banner">
<div class="banner-overlay"></div>
<div id="recipie"></div>
<p>Get your things ready, note your favourite dish's recipie and start the cooking now :) </p>
<button type="button"><a href="#recipie" class="scrollto">Recipies</a></button>
</div>
<div class="recipie1">
<h1>Watch&Cook Recipies</h1>
<!--idli-->
<div class="content1">
<img src="img/idli1.jpg">
<button type="button"><a href="idli.html" target="_blank">Read Out</a></button></button>
<div class="overlay"></div>
<div class="cont-part">
<h1>Idli</h1>
<p>Idli are a type of savoury rice cake, originating from the India, popular as breakfast foods in Southern India and in Sri Lanka. The cakes are made by steaming a batter consisting of fermented black lentile and rice. The fermentation process breaks down the starches so that they are more readily metabolised by the body.</p>
</div>
</div>
<!--vada-->
<div class="content2">
<img src="img/wada1.jpg">
<div class="overlay"></div>
<button type="button"><a href="wada.html" target="_blank"> Read Out</a></button>
<div class="cont-part">
<h1>Vada</h1>
<p>Vada is a category of savoury fried snacks from India. Different types of vadas can be described variously as fritters, cutlets, doughnuts, or dumplings. The various types of vadas are made from different ingredients, ranging from legumes to potatoes. </p>
</div>
</div>
<!--dosa-->
<div class="content1">
<img src="img/dosa1.jpg">
<button type="button"><a href="dosa.html" target="_blank">Read Out</a></button>
<div class="overlay"></div>
<div class="cont-part">
<h1>Dosa</h1>
<p>A dosa is a thin pancake or crepe originating from South India, made from a fermented batter predominantly consisting of lentils and rice. Its main ingredients are rice and black gram, ground together in a fine, smooth batter with a dash of salt, then fermented.</p>
</div>
</div>
<!--naan-->
<div class="content2">
<img src="img/naan1.jpg">
<div class="overlay"></div>
<button type="button"><a href="naan.html" target="_blank">Read Out</a></button>
<div class="cont-part">
<h1>Naan</h1>
<p>Naan is a leavened, oven-baked or tawa-fried flatbread which is found in the cuisines mainly of Western Asia, Central Asia, Indian subcontinent. Naan in parts of the Indian Subcontinent usually refers to a specific kind of thick flatbread. Generally, it resembles pita bread.</p>
</div>
</div>
<!--shawarma-->
<div class="content1">
<img src="img/shawarma1.jpg">
<button type="button"><a href="shawarma.html" target="_blank">Read Out</a></button>
<div class="overlay"></div>
<div class="cont-part">
<h1>Shawarma</h1>
<p>Shawarma is a popular Levantine Arab dish consisting of meat cut into thin slices, stacked in a cone-like shape, and roasted on a slowly-turning vertical rotisserie or spit. Originally made with lamb, mutton or chicken, today's shawarma may also be turkey, beef, or veal.</p>
</div>
</div>
<!--pav bhaji-->
<div class="content2">
<img src="img/pavbhaji.jpg">
<div class="overlay"></div>
<button type="button"><a href="pavbhaji.html" target="_blank">Read Out</a></button>
<div class="cont-part">
<h1>Pav Bhaji</h1>
<p>Pav bhaji is a spiced mixture of mashed vegetables in a thick gravy served with bread. Vegetables in the curry may commonly include potatoes, onions, carrots, chillies, peas, bell peppers and tomatoes. Street sellers usually cook the curry on a flat tava and serve the dish hot.</p>
</div>
</div>
</div>
<footer class="footer-distributed">
<div class="footer-left">
<a href="#" class="nav-logo">Watch&Cook</a>
<p class="footer-links">
<a href="#">Home</a>
·
<a href="#recipie">Recipies</a>
·
<a href="teams.html">About</a>
</p>
<p class="footer-company-name">Watch&Cook © 2023</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p> Dharavi, Mumbai</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>+91 9324451771</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="https://mail.google.com">contact@watch&cook.com</a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>About our work</span>
Watch&Cook is a blog for cooking, and to learn them for your future use :)
</p>
<div class="footer-icons">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-whatsapp"></i></a>
</div>
</div>
</footer>
</body>
</html>