-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
110 lines (84 loc) · 2.84 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Codeshare</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="js/respond.js">
</head>
<body>
<header>
<div class="header-main" style="text-align: right;">
<button class="btn btn-default login-index" onclick="location.href='signup.php';"
>Sign Up</button>
<button class="btn btn-default signup-index" onclick="location.href='login.php';"
>Login</button>
</div>
</header>
<div class="container">
<div class="row">
<div class="col-md-12" style="text-align: center;margin-top: 10px;">
<a href="index.php" class="index-logo"><img src="img/logo.png"></a>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="index-h">
<h1>Share code in real-time<br> with other developers</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12" style="text-align: center;">
<button type="button" class="btn btn-danger index-btn" onclick="location.href='home.php';"
>Share Code Now</button>
</div>
</div>
<div class="row">
<div class="col-md-12" style="text-align: center;">
<p style="color: #97ACB0;margin-top: 8px;"> sign up required</p>
</div>
</div>
<div class="row">
<div class="col-md-12" >
<img class="img-index" src="img/5.png">
</div>
</div>
</div>
<footer>
<div class="container">
<div class="row footer-row"
<div class="col-md-12">
<ul>
<li><a href="https://www.facebook.com/hassan9224">
<i class="fa fa-facebook-square fa-3x"></i>
</a>
</li>
<li>
<a href="https://twitter.com/hassan9224">
<i class="fa fa-twitter-square fa-3x"></i>
</a>
</li>
<li>
<a href="https://plus.google.com/+SyedZainUlHasan">
<i class="fa fa-google-plus-square fa-3x"></i>
</a>
</li>
<li>
<a href="https://gist.github.com/zainulhasan">
<i class="fa fa-github-square fa-3x"></i>
</a>
</li>
</ul>
</div>
</div>
</footer>
<!-- JavaScript-->
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>