-
Notifications
You must be signed in to change notification settings - Fork 7
/
About.html
107 lines (94 loc) · 3.84 KB
/
About.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
<!doctype html>
<html>
<head>
<title>Keep the change</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://afeld.github.io/emoji-css/emoji.css" rel="stylesheet">
<style>
#name {
font-size: 18px
}
</style>
<link rel="stylesheet" href="assets/app.css">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-96571593-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="about-body">
<header class="container header">
<div class="row pull-right">
<div class="col-md-12">
<a href="/" class="btn btn-secondary home-btn">HOME</a>
</div>
</div>
</header>
<section class="container about">
<div class="row">
<div class="col-md-12">
<p class="text-center title">About this</p>
<p class="text-center subtitle" style="font-size: 20px">It all started with <a href="https://twitter.com/Missmoshiku/status/847173800198373379" style="color:red">this tweet.</a>
</p>
<p class="text-center content" style="font-size: 20px">This site was made purely for laughs , don't take it too seriously.<br>on the other hand, serious work was done to make it happen.</p>
<p class="text-center content" style="font-size: 20px">That being said , meet the "twitter boys" behind it.</p>
</div>
</div>
</section>
<section class="container makers">
<div class="row">
<div class="col-md-3 col-md-offset-3">
<div class="inner">
<img src="image/ben.jpg" alt="Dada Ben" class="img-responsive about-us-mobile profile_picture">
<div class="about-us-link">
<p id="name">Benjamin</p>
<a class="about-us-links" href="https://twitter.com/DadaBen_" style="color : #4099Ff">@DadaBen_</a>
</div>
</div>
</div>
<div class="col-md-3 col-md-3">
<div class="inner">
<img src="image/early.jpg" alt="Early Attoh" class="img-responsive about-us-mobile profile_picture">
<div class="about-us-link">
<p id="name">Early</p>
<a class="about-us-links" href="https://twitter.com/earlyattoh" style="color : #4099Ff">@earlyattoh</a>
</div>
</div>
</div>
<div class="col-md-3 col-md-offset-3">
<div class="inner">
<img src="image/ace.jpg" alt="Ace_Kyd" class="img-responsive about-us-mobile profile_picture">
<div class="about-us-link">
<p id="name">Wale</p>
<a class="about-us-links" href="https://twitter.com/Ace_KYD" style="color : #4099Ff">@Ace_KYD</a>
</div>
</div>
</div>
<div class="col-md-3 col-md-3">
<div class="inner">
<img src="image/abiodun.jpg" alt="Adetona77" class="img-responsive about-us-mobile profile_picture">
<div class="about-us-link">
<p id="name">Abiodun</p>
<a class="about-us-links" href="https://twitter.com/Adetona77" style="color : #4099Ff">@adetona77</a>
</div>
</div>
</div>
<div class="col-md-12" style="margin-top : 25px">
<div class="inner">
<img src="image/ye.jpg" alt="Adetona77" class="img-responsive about-us-mobile profile_picture">
<div class="about-us-link">
<p id="name">Yomi</p>
<a class="about-us-links" href="https://twitter.com/yomieluwande" style="color : #4099Ff">@yomieluwande</a>
</div>
</div>
</div>
<div class="col-md-12">
<p class="text-center open-source" style="font-size: 20px">PS : We've made the app <a href="https://github.com/Adetona/keepthechange">open source</a> , so knock yourself out. <i class="em em-wink"></i></p>
</div>
</section>
</body>
</html>