-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdark.html
More file actions
127 lines (108 loc) · 5.48 KB
/
dark.html
File metadata and controls
127 lines (108 loc) · 5.48 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<html lang="en"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Honey Combinator - Unofficial Y Combinator MMO Game client</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/business-frontpage.css" rel="stylesheet">
</head>
<body class="bg-dark text-light">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light bg-light d-none d-lg-block">
<div class="container">
<a class="navbar-brand" href="#">
<img src="logo.png" width="30" height="30" class="d-inline-block align-top" alt="">
Honey Combinator
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="./index.html">Light Container</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="./dark.html">Dark Fluid</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.modd.io/play/hc">Full Page</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://goo.gl/forms/tYUbHsKFIl21dfEi1" target="_blank">Contact us</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Header with Background Image -->
<header class="business-header" style="min-height:460px">
<iframe src="https://www.modd.io/play/hc?guestmode=on" frameborder="0" style="width:100%; height: 100%;"></iframe>
</header>
<!-- Page Content -->
<div class="container">
<div class="row">
<div class="col-sm-12">
<h5 class="mt-4">What is this?</h5>
<ul>
<p>
Honey Combinator is a proof of concept where you can browse <a href="http://ycombinator.com" target="_blank">Y Combinator</a> website in a Massively Multiplayer Online (MMO) game world.<br/>
<small>*This project is not affiliated with Y Combinator, and the content & characters depicted are based on the author's imagination.*</small>
</p>
</ul>
<h5 class="mt-4">Why did you make this?</h5>
<ul>
<p>
<strong>I need your feedback!</strong>
It fascinates me to watch website visitors interacting with each other, and I think there might be a product market fit for this as a promotional/educational tool. Maybe a 404 page could be a MMO game :D<br>
Do you have a webpage that could use something like this? Hit me up, and I'll build & host a game for <strong>free</strong>.<br/><br/>
<a class="btn btn-warning" href="https://goo.gl/forms/tYUbHsKFIl21dfEi1" target="_blank">Tell me about your website</a><br/>
</p>
</ul>
<h5 class="mt-4">Free?! What are you getting out of this?</h5>
<ul>
I'm building the games using my platform, <a href="https://www.modd.io">modd.io</a>. The games being embedded on various websites will give exposure to my platform, and help me figure out the product market fit.
</ul>
<h5 class="mt-4">Specs?</h5>
<ul>
<p>
<ul>
<li>
Each server can have 64 concurrent players, and the servers auto scale
</li>
<li>
Our games are HTML5 and are easily embedded using iframe. It can be played in both web and mobile.
</li>
<li>
Let me know if you have any questions! <a href="admin@modd.io">admin@modd.io</a>
</li>
</ul>
</p>
</ul>
<h5 class="mt-4">How complex can the games get?</h5>
<ul>
<p>
I specialize in 2D multiplayer games, and I can make many different kinds of games such as top-down shooters, MMORPG, mario-style platformer, etc. Here are some of the games that I've made in the past:
<a href="https://www.modd.io/play/two-houses">Braains.io</a>, <a href="https://www.modd.io/play/escapio">Escap.io</a>, <a href="https://www.modd.io/play/salmonz">Salmonz.io</a>, <a href="https://www.modd.io/play/dojo">Taekwon.io</a>, <a href="https://www.modd.io/play/clansmen">Clansmen.io</a>, <a href="https://www.modd.io/play/kitchen">Too many cooks</a>, and many more.
</p>
</ul>
<br/><br/>
</div>
</div>
</div>
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container">
<p class="m-0 text-center text-white">Copyright © Honey Combinator 2019</p>
</div>
<!-- /.container -->
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<div style="display: none;"></div>
</body>
</html>