-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (82 loc) · 2.22 KB
/
index.html
File metadata and controls
93 lines (82 loc) · 2.22 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
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<title>Startup Finder</title>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<!-- <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'> -->
<script src="static/js/startup_viz.js"></script>
<link rel="stylesheet" type="text/css" href="static/css/startup_viz.css">
<link rel="stylesheet" type="text/css" href="static/css/fontello.css">
</head>
<body>
<div id="wrapper">
<!-- Page title -->
<div id="website_header">
<h1>Have a Startup Idea?</h1>
</div>
<!-- Search bar and button -->
<div id="keyword_search_bar_container">
<input id="keyword_search_bar" class="keyword_search_bar" placeholder="What's your idea?" type="text"/>
<button type="button" id="search_button">Find Similar Companies</button>
</div>
<!-- Search results -->
<div id="results_container">
<div id="results_header">
<h2>Similar Companies</h2>
<table id="results_table">
<tr class="results_table_header_row">
<th class="image">Logo</th>
<th class="name">Name</th>
<th class="bar">Relevance</th>
<!--<th class="number">Year Founded</th>
<th class="number">Funding Total</th>
<th class="status">Status</th> -->
<th class="location">Location</th>
</tr>
<!--
<tr class="results_table_row">
<td>Logo</td>
<td>Skydrive</td>
<td>Score 90</td>
<td>2007</td>
<td>$27M</td>
<td>Closed</td>
<td>WA, USA</td>
</tr>
<tr class="results_table_row">
<td>Logo</td>
<td>Dropbox</td>
<td>Score 50</td>
<td>2001</td>
<td>$390M</td>
<td>IPO</td>
<td>CA, USA</td>
</tr>
<tr class="results_table_row">
<td>Logo</td>
<td>Streem</td>
<td>Score 25</td>
<td>2001</td>
<td>$0.7M</td>
<td>Operating</td>
<td>CA, USA</td>
</tr>
-->
</table>
</div>
<!-- Company Modal -->
<!--
<div id="overlay"></div>
-->
<!--
<div id="results_modal_container">
<div id="results_modal_content">
<p>Some text</p>
</div>
</div>
-->
</div>
</div>
</body>
</html>