-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader1.php
More file actions
54 lines (51 loc) · 1.9 KB
/
header1.php
File metadata and controls
54 lines (51 loc) · 1.9 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
<?php
include 'includes/connections.php';
//counting available devs
$query = "SELECT clients FROM devs WHERE status=1 AND clients=0";
$queryResult = mysql_query($query, $con);
$devs = mysql_num_rows($queryResult);
//echo $devs;
session_start();
$_SESSION['devs'] = $devs;
?>
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Super Fast Developer</title>
<link rel="stylesheet" href="stylesheets/app.css" />
<link href='https://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
<script src="js/jquery-1.11.3.min.js"></script>
</head>
<header>
</header>
<body>
<div class="banner">
<div class="merchants">
<img src="images/secured_by_pp.png" alt="Secured By PayPal" width="120px" />
<img src="images/Powered-By-Stripe.png" alt="Powered By Stripe" width="120px" />
</div>
<h1>Super Fast Development</h1>
<div class="banner-content">
<div class="banner-left">
<h3>Emergency Fix</h3>
<p>On demand developers for when your site crashes, something
goes wrong or you just want something fixed right now.</p>
</div>
<div class="banner-middle">
<h3>Expert American Devs</h3>
<p>All our developers have at least 3 years of professional
programming experience and sometimes, degrees.</p>
</div>
<div class="banner-right">
<h3>$200 Per Hour</h3>
<p>Immediate, simple and confidential. You get our undivided attention at $200 per hour.</p>
</div>
</div>
<div class="banner-timer">
<div class="timer">
<h1><?php echo $devs;?> Devs on Standby</h1>
</div>
</div>
</div>