forked from G-Mosseater/MOD-3-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (67 loc) · 3 KB
/
index.html
File metadata and controls
68 lines (67 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Huddle</title>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./landingpage.css" />
<!-- Font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Header with title and logo -->
<header>
<div class="logos">
<img src="./img/Logo/logo full.svg" alt="huddle logo">
<a href="./login/login.html">
<img class="profileLogo" src="./img/Icons/black icon profile.svg" alt="profile icon">
</a>
</div>
<div class="titles">
<h1><b>WELCOME</b></h1>
<h3>FIND EVENTS FOR THE WHOLE FAMILY & CHAT WITH OTHER PARENTS</h3>
</div>
</header>
<main>
<!-- card container -->
<section class="news_container">
<h2>UPCOMING EVENTS</h2>
<!-- cards -->
<div class="news">
<h4>Baby music</a><img class="star" src="./img/Icons/star icon.svg" alt="click to favorite"></h4>
<p>Harpa offers free music experience for children and families to discover the magical world of sounds.</p>
<div class="iconbar">
<!-- icons -->
<span><img src="./img/Icons/icon event yellow.svg" alt="icon event"> 20.11.2024</span>
<span><img src="./img/Icons/icon date.svg" alt="icon date">16:00</span>
<span><img src="./img/Icons/icon place.svg" alt="icon place"> Harpa</span>
</div>
</div>
<div class="news">
<h4>Meetup - Róló<img class="star" src="./img/Icons/star icon.svg" alt="click to favorite"></h4>
<p>Hey guys, lets meet tomorrow after the first nap. I will bring coffee.</p>
<div class="iconbar">
<span><img src="./img/Icons/icon event yellow.svg" alt="icon event"> 28.11.2024</span>
<span><img src="./img/Icons/icon date.svg" alt="icon date">11:00</span>
<span><img src="./img/Icons/icon place.svg" alt="icon place">Langholtsvegur 50</span>
</div>
</div>
<div class="aboutus">
<h2>ABOUT US</h2>
<p>We are an app that brings parents together. We want to make parents life easier. We help you find events that you can go to with your child from a newborn and as your child grows. There you can meet other parents to connect.</p>
<p>We connect parents together through chatrooms. You can chat to people that are going through the same experience!</p>
<div class="button">
<a href="./login/login.html">
<span>JOIN US</span>
</a>
</div>
</section>
</main>
</body>
</html>