-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
102 lines (75 loc) · 3.75 KB
/
index.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
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>The TechFounder</title>
<!--Background changer -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var max = 6;
var min =1;
var num = Math.floor(Math.random() * (max - min + 1)) + min;
if(num==1)
$('body').css('background-image', 'url("assets/images/bg3.jpg")');
else if(num==2)
$('body').css('background-image', 'url("assets/images/bg3.jpg")');
else if(num==3)
$('body').css('background-image', 'url("assets/images/bg3.jpg")');
else if(num==4)
$('body').css('background-image', 'url("assets/images/bg4.jpg")');
else if(num==5)
$('body').css('background-image', 'url("assets/images/bg5.jpg")');
else if(num==6)
$('body').css('background-image', 'url("assets/images/bg6.jpg")');
});
</script>
<meta name="description" content="The right place if you are looking for a tech co-founder">
<!-- mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Fonts>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700' rel='stylesheet' type='text/css'>
<!-- Styles-->
<link rel="stylesheet" href="assets/styles/normalize.css">
<link rel="stylesheet" href="assets/styles/main.css">
<link rel="stylesheet" href="assets/styles/mobile.css">
<link rel="stylesheet" href="assets/styles/theme.css">
<!-- Favicon -->
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/x-icon" />
</head>
<body>
<!-- Header: Your site logo, tagline and project status. -->
<header class="row" id="header">
<div class="content">
<span ></span>
</div>
</header>
<!-- Intro: Your intro text and MailChimp form. -->
<div class="row" id="intro">
<div class="content">
<!-- Pre-Submission: This is what's displayed before the subscription form has been submitted. -->
<div id="pre-subscribe">
<div class="row" id="copy">
<h1> <strong>Hi!</strong><br></h1><h2 class="css-typing"> Welcome to <i>TheTechFounder.in</i><strong></strong></h2>
<p><strong>Looking for a Technical Co-Founder? <br> You're not alone!</strong>
<br><h3>Add your email and we'll get in touch with you <br>
and yes ; We promise not to spam you!</h3></p>
</div>
<div class="row" id="subscribe">
<form action=http://formspree.io/[email protected]>
<input type="text" name="email" id="email" placeholder="Enter your Email">
<input type="submit" value="Add" class="button icon submit">
<!-- name="Send" </button>-->
</form>
</div>
</div>
<div id="post-subscribe">
<div class="row" id="copy">
<h1>Thanks for <strong>signing up</strong>. We will <strong>get back</strong>to you.</h1>
</div>
</div>
<!-- Required Scripts: Not too much needed for Launch. -->
<script src="http://code.jquery.com/jquery-2.1.1.min.js" type="text/javascript"></script>
<script src="assets/scripts/main.js"></script>
</body>
</html>