-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
86 lines (83 loc) · 3.61 KB
/
index.php
File metadata and controls
86 lines (83 loc) · 3.61 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
<?php session_start();
include_once 'header2.php';?>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item active" aria-current="page">Home</li>
</ol>
</nav>
<div class="banner">
<img src="img/banner.png" width="512px">
<p class="lead">Choose problem set category:</p>
<div class="cat-card">
<div style="width: auto; margin: auto; overflow: hidden">
<a href="construct.php">
<div class="card" style="width: 13rem;">
<img src="img/Statistics.png" class="card-img-top" alt="Statistics">
<div class="card-body">
<h5 class="card-title">Statistics</h5>
</div>
</div>
</a>
<a href="error404.html">
<div class="card" style="width: 13rem;">
<img src="img/People.png" class="card-img-top" alt="People">
<div class="card-body">
<h5 class="card-title">People</h5>
</div>
</div>
</a>
<a href="error404.html">
<div class="card" style="width: 13rem;">
<img src="img/Health.png" class="card-img-top" alt="People">
<div class="card-body">
<h5 class="card-title">Health</h5>
</div>
</div>
</a>
<a href="error404.html">
<div class="card" style="width: 13rem;">
<img src="img/Location.png" class="card-img-top" alt="Location">
<div class="card-body">
<h5 class="card-title">Location</h5>
</div>
</div>
</a>
<a href="error404.html">
<div class="card" style="width: 13rem;">
<img src="img/Telecommunications.png" class="card-img-top" alt="Telecommunications">
<div class="card-body">
<h5 class="card-title">Telecom</h5>
</div>
</div>
</a>
<a href="error404.html">
<div class="card-etc" style="width: 13rem;">
<img src="img/More.png" class="card-img-top" alt="More">
<div class="card-body">
<h5 class="card-title">More...</h5>
</div>
</div>
</a>
</div>
</div>
</div>
<br>
<br>
<br>
<div style="text-align: center">
<h5 class="display-4">QUANTY<i style="color: #fff; font-style: normal; background-color: #cc0000; padding: 0rem 1rem; margin: 0rem 1rem">BRIDGES</i></h5>
<br>
<p class="lead" style="margin-bottom: 0rem">Quanty allows you to engage in quantum computing by acting as a bridge between you and quantum computing company.</p>
<p class="lead">This allows for development in technological industry and helps find real-world solutions.</p>
</div>
<br>
<br>
<br>
<div style="text-align: center; background-color: rgb(220, 220, 220); padding: 2rem 0rem">
<h5 class="display-4">QUANTY<i style="color: #fff; font-style: normal; background-color: #cc0000; padding: 0rem 1rem; margin: 0rem 1rem">GROWS</i></h5>
<br>
<p class="lead" style="margin-bottom: 0rem">Quanty is managed by people who truly care.</p>
<p class="lead">For them, the work never stops until mankind has reached its full potential and beyond.</p>
</div>
</body>
</html>