Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

Added startups.html #26

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
147,221 changes: 147,221 additions & 0 deletions img-src/mockups.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img-src/temp/Internet_map_1024.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img-src/temp/banner_page-wide-opte.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img-src/temp/hand-48284_640.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img-src/temp/hand.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img-src/temp/hbo-silicon-valley__index.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img-src/temp/wifi-symbol-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 62 additions & 0 deletions src/startups.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body { height: 100%;}
.opte-bg {
position:relative;
min-height: 50%;
width:100%;
background-image: url(../img-src/temp/banner_page-wide-opte.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
padding: 150px 25px;

}

.hand {
height: auto;
width: 400px;
max-width: 100%;
margin: 0 auto;
display: block;
position: relative;
left: 50px;
}

.logo {
height: auto;
width: 150px;
max-width: 100%;
margin-left: -50px;
display: block;
position: absolute;
bottom: -75px;
left: 50%;
}


</style>
</head>
<body>
<div class="opte-bg">

<img class="hand" src="../img-src/temp/hand.png">
<img class="logo" src="./images/logo.png">

</div>




</body>



</html>