generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
121 lines (104 loc) · 4.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Sub30s Group for Buddhist study and meditation.">
<meta name="keywords" content="sub30s, under 30, buddhist, buddhism, meditation">
<meta name="author" content="Thomas Faulkner">
<link rel="stylesheet" href="assets/css/style.css">
<title>Sub30s Buddhist Group</title>
</head>
<body>
<!-- Header Code initally used from the Love Running Project, adjusted as appropriate -->
<header>
<div>
<a href="index.html" id="logo">
<h1>Sub30s Buddhist Group</h1>
</a>
<nav>
<ul id="menu">
<li><a href="get-in-touch.html">Get in Touch</a></li>
<li><a href="buddhism.html">Buddhism & Meditation</a></li>
<li><a href="index.html" class="live-page">Home</a></li>
</ul>
</nav>
</div>
</header>
<!-- main section -->
<!-- Hero Image Code initally used from the Love Running Project, adjusted as appropriate -->
<section id="hero-outer">
<img src="assets/images/woman-meditating.jpg" alt="Woman Meditating in the Outdoors." id="hero-image">
<div class="hero-text">
<h2>Buddha - Dharma - Sangha</h2>
</div>
</section>
<section class="information">
<div class="text-left">
<h2>Who we are?</h2>
<p>The Sub30s Buddhist Group is a place for younger people to get together regularly to practice
meditation and study Buddhism.</p>
</div>
<img src="assets/images/pink-lotus.jpg" alt="Close-up Photography of Pink Lotus." class="img-right">
</section>
<!-- Code initally used from the Coders Coffee Project, adjusted as appropriate -->
<section id="what-we-do">
<h2>What we do?</h2>
<div class="left-about">
<h3>Practice</h3>
<p>Every meet up we practice either Meta Bhavana and the Mindfulness of Breathing meditations in a group environment
- see the <a href="buddhism.html" target="_blank">'Buddhism & Meditation'</a> page for more information about both meditations.</p>
</div>
<div class="center-about">
<h3>Study</h3>
<p>Buddhist texts are taught, studied and discussed within like-minded groups of people who share relatable
experiences of being spiritually disconnected within a modern western world.</p>
</div>
<div class="right-about">
<h3>Socialize</h3>
<p>A fun and friendly environment with many planned social events.</p>
</div>
</section>
<section class="information">
<div class="text-right">
<h2>When we meet?</h2>
<p>Every Saturday between 10.30am - 12.30pm</p>
<p>First Friday of every Month Between 7pm - 9pm</p>
</div>
<img src="assets/images/rock-formation.jpg" alt="Four rock formation." class="img-left">
</section>
<section class="information">
<div class="text-left">
<h2>Where to find us?</h2>
<p>4 Friars Bridge Rd, <br> Ipswich, <br> IP1 1RR</p>
</div>
<iframe id="map" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d9813.30752591819!2d1.1486419!3d52.0555714!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x223a3a3a847f0476!2sIpswich%20Buddhist%20Centre!5e0!3m2!1sen!2suk!4v1655213155604!5m2!1sen!2suk"
title="Map locating the Buddhist Center." class="img-right"></iframe>
</section>
<!-- footer: Code used from the Love Running Project -->
<footer>
<p>Project created for educational purposes only.</p>
<ul class="social-networks">
<li>
<a href="http://facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"><i class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a href="http://twitter.com" target="_blank" rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)"><i class="fa-brands fa-twitter-square"></i></a>
</li>
<li>
<a href="http://youtube.com" target="_blank" rel="noopener"
aria-label="Visit our YouTube page (opens in a new tab)"><i class="fa-brands fa-youtube-square"></i></a>
</li>
<li>
<a href="http://instgram.com" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"><i class="fa-brands fa-instagram"></i></a>
</li>
</ul>
</footer>
<!-- font awesome script-->
<script src="https://kit.fontawesome.com/7eeb2b83b1.js" crossorigin="anonymous"></script>
</body>
</html>