-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html.php
116 lines (100 loc) · 4.2 KB
/
index2.html.php
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
<link href="css/rainbow.css" rel="stylesheet">
<link type="text/css" href="css/index.css" rel="stylesheet">
<body class="dark-gradient m-auto">
<?php include $_SERVER['DOCUMENT_ROOT'] . '/includes/components/nav.inc.html.php'; ?>
<hr>
<!-- Main -->
<div class="animated slideInUp jumbotron-fluid" id="jumb">
<div class="text-left">
<h2 class="animated rollIn mb-2 text-info font-weight-bold" id="hi">
Hi, my name is
</h2>
<br>
<br>
<br>
<h1 class="animated lightSpeedIn" id="intro" data-heading="Omar." title="That's my name!">
<span class="animated
tada text-center" data-heading="Omar.">Omar.</span></h1>
</div>
</div>
<section class="container-fluid">
<div class="row">
<h4 class="animated rollIn col-4 text-success pull-right" id="first" title="Pancake stacks!">I am a full-stack developer,</h4>
</div>
<br>
<br>
<div class="row">
<div class="text-warning mr-1 animated slideInRight mt-2 pt-2" id="flow" title="I love Hoops! <3">a flow artist,</div>
</div>
<br><br><br><br>
<div class="row text-left pt-1 pb-3">
<div class="text-danger animated rollIn col-4" id="toy" title="Shameless Self-Promotion">and a flow propsmith.</div>
</div>
</section>
<hr>
<br>
<!-- Link Butons to other pages -->
<div class="card text-center justify-content-center pb-3">
<ul class="col list-inline p-2">
<li class="list-inline-item" id="code-link">
<a
class="btn btn-success btn-default btn-lg light-green accent-4 raised round animated bounceInLeft"
href="https://flowmar.gwiddle.co.uk/code"
role="button">
<span class="codebtnword">Code</span>
</a>
</li>
<li class="list-inline-item" id="flow-link">
<a
class="btn btn-primary raised round light-blue accent-2 btn-lg animated bounceInRight"
href="https://flowmar.gwiddle.co.uk/flow"
role="button">
<span class="flowbtnword">
Flow
</span>
</a>
</li>
<li class="list-inline-item" id="contact-link">
<a
class="btn btn-warning btn-lg raised round amber accent-4 animated bounceInDown"
href="https://flowmar.gwiddle.co.uk/contact"
role="button">
<span class="contactbtnword">
Contact
</span>
</a>
</li>
</ul>
</div>
<div class="card deep-violet-gradient mdb-gradient text-center text-white justify-content-center updates m-auto">
<span class="display-3 text-center font-weight-bold">News and Updates</span>
<hr class="white">
<p class="mb-2" title="This is a tooltip, bruh.">
<br>
<span class="h3">October 17, 2017</span>
<br>
<ul class="p-2">
<li>
My
<a href="https://github.com/flowmar/gifs-in-a-jiffy">Giphy API App</a>
and my back end project,
<a href="https://flowmar.gwiddle.co.uk/projects/3-back-end/1-liri-bot-node/liri-screenshots.html">Liri</a>, are both posted!
</li>
<br>
<li></li>
</ul>
</p>
</div>
<div class="col"></div>
<br>
<br>
<hr class="white">
<?php include $_SERVER['DOCUMENT_ROOT'] . '/includes/components/footer.html.php'?>
<!-- SCRIPTS -->
<script src="https://code.jquery.com/jquery-3.2.1.js" integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
<script src="js/mdb.min.js"></script>
<script src="js/portfolio.js"></script>
<script src="js/index.js"></script>
</body>