-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (63 loc) · 4.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wellness Wednesday</title>
<!--Style sheet-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="styles/styles.css">
<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=Montserrat:wght@200;300;400&family=Patua+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="js/activity.js"></script>
</head>
<body>
<!--Navbar-->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">
<img src="images/navbar-brand.png" alt="" width="50" height="50">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="./activity.html">Find Activity</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="./index.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<br><br><br>
<div class="row" style="margin: 0;">
<div class="col-lg-6 about-image">
<img class="title-image" src="images/home.png" alt="">
</div>
<div class="col-sm-6" id="heading">
<h2 class="about-heading">Dreaming about the happy and productive work team?<br/><br/> Why just don't make one?</h2>
</div>
</div>
<div style="background-color: white; margin: 40px 0 0 10%;" >
<p style="padding: 3%; text-align: centre; font-size: 1.2em;"> But team building at work can be tricky, especially nowadays when people work remotely or socially distance. <br/><br/>
<span style='font-weight:bold;'>Wellness Wednesday</span> lets you <span class="yellow">find a suitable fun activity</span> for your team. Whether you have 10 minutes or a few hours, you will find something just right for your buddies. <br/>
<span class="yellow">No more browsing the Internet</span>, reading articles that just take your time. How many times have you spent a long time searching for this one not awkward activity that would take no longer than 15 minutes?
In Wellness Wednesday you can <span class="yellow">specify time constraints, supply and the character</span> of a game. Mindfulness, Team Bonding or Creativity? You decide!</p>
</div>
<footer>
<p>© Wellness Wednesday</p>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>