Skip to content
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
32 changes: 32 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>API</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="mystyle.css">

</head>
<body>
<div class="main">
<div class="search">
<form>
What company are you looking for?<br>
<input type="text" name="Search company"><br>
<input type="submit" name="Submit" value="Search">
</form>
</div>
<div class="graph">
<!--This is a comment. Add stuff in this div-->
</div>
<div class="result">
<!--add stuff in this div too-->
</div>
</div>
</body>
</html>
23 changes: 23 additions & 0 deletions mystyle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
Created on : 13.2.2018, 19:00:32
Author : Satu
*/
body{
background-color: lightblue;
}
form{
margin-left: 20%;
margin-right: 20%;
}
div{
margin: auto;
width: 80%;
}
.main{
background-color: wheat;
}