-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
123 lines (111 loc) · 2.72 KB
/
index.php
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
<?php
session_start();
include 'mylib.php';
?>
<!--Filename: index.php
Purpose: home page for FashionFinder prototype -->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="https://fashion-finder.store/images/favicon.ico">
<link rel="stylesheet" href="styles.css">
</head>
<style>
.CTA-card {
display: flex;
align-items: center;
justify-content: center;
height: 500px;
width: 100;
font-family: 'Questrial', sans-serif;
}
.CTA-card-text-items {
display: flex;
flex-direction: column;
position: absolute;
align-items: center;
width: 100%;
}
.CTA-card-background-img-holder {
border-radius: 8px;
height: 100%;
width: 100%;
}
.CTA-img {
height: 100%;
width: 100%;
position: static;
object-fit: cover;
box-sizing: border-box;
border-radius: 4px;
}
.CTA-card-button-box {
align-items: center;
}
.CTA-card-button {
background-color: #000;
border: none;
outline: none;
font-size: 14px;
line-height: 22px;
border-radius: 4px;
padding: 10px 30px;
color: #fff;
font-weight: 600;
}
.CTA-card-title {
text-align: center;
color: #000;
text-shadow:
3px 3px 0 #fff,
-3px 3px 0 #fff,
-3px -3px 0 #fff,
3px -3px 0 #fff;
}
</style>
<body>
<?php include 'elements/header.php'; ?>
<main>
</main>
<div class="CTA-card">
<div class="CTA-card-text-items">
<div class="CTA-card-title">
<h1>What are you waiting for?</h1>
</div>
<div class="CTA-card-button-box">
<a href="https://www.fashion-finder.store/shop.php"><button type="button" class="CTA-card-button">SHOP</button></a>
</div>
</div>
<div class="CTA-card-background-img-holder">
<img src="images/hero.jpeg" class="CTA-img" alt="Happy people">
</div>
</div>
<!--<div class="CTA-card">
<div class="CTA-card-text-items">
<div class="CTA-card-title">
<h1>Find Your Prom Dress</h1>
</div>
<div class="CTA-card-button-box">
<a href="https://www.fashion-finder.store/shop.php#gsc.tab=0&gsc.q=prom"><button type="button" class="CTA-card-button">DRESSES</button></a>
</div>
</div>
<div class="CTA-card-background-img-holder">
<img src="images/new-hero1.jpeg" class="CTA-img"/>
</div>
</div>
<div class="CTA-card">
<div class="CTA-card-text-items">
<div class="CTA-card-title">
<h1>Professional Clothes</h1>
</div>
<div class="CTA-card-button-box">
<a href="https://www.fashion-finder.store/shop.php#gsc.tab=0&gsc.q=internship%20clothes"><button type="button" class="CTA-card-button">SHOP</button></a>
</div>
</div>
<div class="CTA-card-background-img-holder">
<img src="images/new-hero3.jpeg" class="CTA-img"/>
</div>
</div>-->
<?php include 'elements/footer.php'; ?>
</body>
</html>