-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (114 loc) · 5.36 KB
/
index.html
File metadata and controls
118 lines (114 loc) · 5.36 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
<html>
<head>
<title>Featured Spaces</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
</head>
<body>
<div class="container">
<section class="featured">
<h2>Featured Spaces</h2>
<p>Explore a curated selection of premier workspaces that embody the essence of productivity and comfort.</p>
<button class="discover-btn">Discover →</button>
</section>
<div class="grid">
<div class="space">
<img src="ART.jpg" alt="Green Oasis Retreats">
<i class="fas fa-thumbs-up like-icon"></i>
<h3>Green Oasis Retreats</h3>
<div class="info-section">
<p class="workstation">
Type: <i class="fas fa-arrow-right"></i>
<i class="fas fa-square"></i>
<i class="fas fa-play"></i>
<span class="lines">— —</span>
<span class="green-text">Work Station</span>
</p>
<p>Femi is a developer, Superb.</p>
<p class="icon-text">
<i class="fas fa-star"></i> Experience
<i class="fas fa-forward"></i> Growth
<i class="fas fa-chart-line"></i> Success
<i class="fas fa-user"></i> Community
</p>
<p class="price">$13-15 per hour</p>
<a href="#" class="full-plan">See full plan</a>
</div>
<button class="book-btn">Book Space</button>
</div>
<div class="space">
<img src="biz.jpg" alt="Executive Elegance">
<i class="fas fa-thumbs-up like-icon"></i>
<h3>Executive Elegance</h3>
<div class="info-section">
<p class="workstation">
Type: <i class="fas fa-arrow-right"></i>
<i class="fas fa-square"></i>
<i class="fas fa-play"></i>
<span class="lines">— —</span>
<span class="green-text">Work Station</span>
</p>
<p>Femi is a developer, Superb.</p>
<p class="icon-text">
<i class="fas fa-star"></i> Experience
<i class="fas fa-forward"></i> Growth
<i class="fas fa-chart-line"></i> Success
<i class="fas fa-user"></i> Community
</p>
<p class="price">$13-15 per hour</p>
<a href="#" class="full-plan">See full plan</a>
</div>
<button class="book-btn">Book Space</button>
</div>
<div class="space">
<img src="nav1.jpeg" alt="Creative Studios for Innovation">
<i class="fas fa-thumbs-up like-icon"></i>
<h3>Creative Studios for Innovation</h3>
<div class="info-section">
<p class="workstation">
Type: <i class="fas fa-arrow-right"></i>
<i class="fas fa-square"></i>
<i class="fas fa-play"></i>
<span class="lines">— —</span>
<span class="green-text">Work Station</span>
</p>
<p>Femi is a developer, Superb.</p>
<p class="icon-text">
<i class="fas fa-star"></i> Experience
<i class="fas fa-forward"></i> Growth
<i class="fas fa-chart-line"></i> Success
<i class="fas fa-user"></i> Community
</p>
<p class="price">$13-15 per hour</p>
<a href="#" class="full-plan">See full plan</a>
</div>
<button class="book-btn">Book Space</button>
</div>
<div class="space">
<img src="benz.jpg" alt="Collaborative Corners">
<i class="fas fa-thumbs-up like-icon"></i>
<h3>Collaborative Corners</h3>
<div class="info-section">
<p class="workstation">
Type: <i class="fas fa-arrow-right"></i>
<i class="fas fa-square"></i>
<i class="fas fa-play"></i>
<span class="lines">— —</span>
<span class="green-text">Work Station</span>
</p>
<p>Femi is a developer, Superb.</p>
<p class="icon-text">
<i class="fas fa-star"></i> Experience
<i class="fas fa-forward"></i> Growth
<i class="fas fa-chart-line"></i> Success
<i class="fas fa-user"></i> Community
</p>
<p class="price">$13-15 per hour</p>
<a href="#" class="full-plan">See full plan</a>
</div>
<button class="book-btn">Book Space</button>
</div>
</div>
</div>
</body>
</html>