-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
113 lines (104 loc) · 4.95 KB
/
about.html
File metadata and controls
113 lines (104 loc) · 4.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale = 1.0, initial-scale = 1.0, maximum-scale = 5.0, user-scalable=yes, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Kyle Francis Chua's Thesis project that aims to keep Philippine cultural dances alive">
<meta property="og:title" content="Kibo">
<meta property="og:type" content="website">
<meta property="og:description" content="Kyle Francis Chua's Thesis project that aims to keep Philippine cultural dances alive">
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="animate.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg py-4">
<div class="navbarContainter">
<ul class="flex spaceBetween alignCenter">
<li class="nav-item">
<a href="/" class="navbar-brand"><img src="./resources/logo/logo.svg" alt="logo"></a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link">About</a>
</li>
<li class="nav-item">
<p class="nav-link" style="cursor: pointer">Dances</p>
<ul class="dance-dropdown">
<li><a href="dances-ba-ingles.html" class="nav-link nav-dropdown">Ba-Ingles</a></li>
<li><a href="dances-polka.html" class="nav-link nav-dropdown">Polka</a></li>
</ul>
</li>
<li class="nav-item">
<a href="adaptation.html" class="nav-link">Adaptation</a>
</li>
</ul>
</div>
</nav>
<section class="my-5">
<div class="container">
<div class="row flex alignCenter justifyCenter about-container pb-5 animated fadeInUp">
<h1>Philippine Dances</h1>
<p>Philippine dances are more than just ancestral performances, they <b>tell stories about our <br>country’s people</b> and the influence of many <b>cultures</b> we’ve come across.
<br>These are 2 important terms to understand the dances better:</p>
</div>
<div class="row flex about-container">
<div class="col-md-6 alignCenter justifyCenter col-2 animated fadeIn"style="border-right: 4px solid #E8871E; padding: 30px 0;">
<h3>Figures</h3>
<h4>Figures are the <b>different segments</b> of the dance <br> which are performed from <b>Introduction to <br>Figure 1 and so on until the Saludo</b>.
<br> <br>Most dances are comprised of a <b>number of figures</b> <br>which must be followed in order for completion.</h4>
</div>
<div class="col-md-6 alignCenter justifyCenter col-2 animated fadeIn" style="padding: 30px 0;">
<h3>Measures</h3>
<h4>Measures are the <b>counts for each dance</b>. Each <br>measure will contain a certain amount of counts <br>for the step, depending on the dance.
<br> <br>Steps have measures, and the counts for these <br> <b>steps add up to create a Figure</b>.</h4>
</div>
</div>
</div>
</section>
<section id="why" class="my-5">
<div class="container">
<div class="row flex alignCenter">
<div class="col-md-6 about-container animated fadeIn">
<h1>Why Philippine Dance?</h1>
<p style="text-align: left">Because Philippine Dance is a <b>cultural treasure</b> that gives us an <b>abundance of knowledge</b> that bolsters our <b>national identity</b>.</p>
</div>
<div class="col-md-1"></div>
<div class="col-md-5">
<img src="./resources/about/why.svg" alt="why" class="animated slideInLeft">
</div>
</div>
</div>
</section>
<section id="how" class="my-5">
<div class="container">
<div class="row flex alignCenter">
<div class="col-md-5">
<img src="./resources/about/how.svg" alt="how" class="animated slideInRight">
</div>
<div class="col-md-1"></div>
<div class="col-md-6 about-container animated fadeIn">
<h1>How does this work?</h1>
<p style="text-align: left">This website works through <b>visual guides</b> built from <b>authentic sources</b> that are made more efficient by <b>utilizing technology</b></p>
</div>
</div>
</div>
</section>
<section id="what" class="my-5">
<div class="container">
<div class="row flex alignCenter">
<div class="col-md-6 about-container animated fadeIn">
<h1>What does this do?</h1>
<p style="text-align: left">To present <b>specific dances</b> in a way that will <b>teach context & performance</b> which will ultimately lead to a deeper <b>appreciation</b> of Philippine dances.</p>
</div>
<div class="col-md-1"></div>
<div class="col-md-5">
<img src="./resources/about/what.svg" alt="what" class="animated slideInLeft">
</div>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>