-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (137 loc) · 5.55 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>reveal.js</title>
<link rel="stylesheet" href="dist/reset.css" />
<link rel="stylesheet" href="dist/reveal.css" />
<link rel="stylesheet" href="dist/theme/moon.css" />
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" />
<!-- fontawesome-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- <section data-background-color='rgb(151, 223, 240)'> -->
<section class="wrapper__img-app">
<img src='./images/TeiloScreenshot.png'alt='screenshot app' class="img-app">
<!-- <h5>a mobile app</h5> -->
</section>
</section>
<section class="slide">
<section>
<h3>bad mood after splitting costs ?</h3>
</section>
<section>
<iframe src="https://giphy.com/embed/kN3GNb34H5x14wnYKe" width="480" height="270" frameBorder="0" class="giphy-embed" allowFullScreen></iframe><p><a href="https://giphy.com/gifs/primevideo-mcqueen-stevemcqueen-alexwheatle-kN3GNb34H5x14wnYKe"></a></p>
</section>
</section>
<section class="slide">
<h3>a calculator app to split expense
<span class="fragment">equally</span> between groups/partners</h3>
</section>
<section class="slide">
<h3 class="fragment animated scale-up"
data-animated-duration="2000"
data-animated-iterations="1"
data-animated-fill="forwards">what makes it unique ?</h3>
</section>
<section>
<h3>a calculation based on <span class="fragment" ><h2>income</h2></span>
</h3>
</section>
<section>
<iframe src="https://giphy.com/embed/OK27wINdQS5YQ" width="480" height="338" frameBorder="0" class="giphy-embed" allowFullScreen></iframe><p><a href="https://giphy.com/gifs/mind-seinfeild-OK27wINdQS5YQ"></a></p>
</section>
<section class="team">
<section>
<h3>the team</h3>
</section>
<section class="member">
<div class="member jonathan">
<p class="member__name"><em>Jonathan</em></p>
<div class="member__avatar">
<div class="circle__jonathan">
<img src="./images/jonathan.jpg" class="img-jonathan"/>
</div>
</div>
</div>
</section>
<section class="member">
<div class="member tim">
<p class="member__name"><em>Tim</em></p>
<div class="member__avatar">
<div class="circle__tim">
<img src="./images/tim.jpeg" class="img-tim"/>
</div>
</div>
</div>
</section>
<section class="member">
<div class="member norman">
<p class="member__name"><em>Norman</em></p>
<div class="member__avatar">
<div class="circle__norman">
<img src="./images/norman.jpeg" class="img-norman"/>
</div>
</div>
</div>
</section>
</section>
<section class="tech-stack">
<h3>the tech stack</h3>
<div class="wrapper-tech">
<img src="./images/react.png" alt="react icon" class="tech-stack_icon"><img src="./images/node.png" alt="node icon" class="tech-stack_icon"><img src="./images/expressjs_logo_icon_169185.png" alt="" class="tech-stack_icon">
<img src="./images/mongodb-icon.png" alt="" class="tech-stack_icon">
</div>
</section>
<section class="algorithm">
<section>
<h3>the algorithm</h3>
<i class="fas fa-square-root-alt fa-4x"></i>
</section>
<section>
<iframe src="https://giphy.com/embed/l1BUN2Yn68J1XvqdVm" width="480" height="480" frameBorder="0" class="giphy-embed" allowFullScreen></iframe><p><a href="https://giphy.com/gifs/hyperrpg-reaction-mrw-wow-l1BUN2Yn68J1XvqdVm"></a></p>
</section>
</section>
<section>
<h3>
the preparation
</h3>
</section>
<!-- <section class="outlook">
<section>
<h3>the outlook</h3>
</section>
<section>
<i class="fas fa-bell fa-4x"></i>
</section> -->
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// initialization & config
Reveal.initialize({
hash: true,
slideNumber : true ,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [RevealMarkdown, RevealHighlight, RevealNotes],
dependencies: [
// Other plugins
{src: 'node_modules/revealjs-animated/dist/revealjs-animated.js',
async: true}
]
});
</script>
</body>
</html>