-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPeoplePerHour.html
73 lines (70 loc) · 1.53 KB
/
PeoplePerHour.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
#pphlogo{
float: left;
margin-left: 12px;
padding-top: 7px;
}
.header{
display: inline-block;
padding-top: 4px;
margin-top: 4px;
margin-bottom: 10px;
}
.button{
color: black;
font-size: 13px;
font-family: Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;
font-weight: bold;
height: 40px;
width: 130px;
margin-left: 10px;
border-radius: 5px;
border: 1px;
background-color: white;
}
#postProjectButton{
color: white;
background-color: #FF7300;
margin-left: 290px;
border-color: #FF7300;
}
#searchButton{
color: skyblue;
background-color: white;
margin-left: 10px;
border: 1px solid skyblue;
border-radius: 5px;
}
#loginButton{
width: 60px;
}
#signUpButton{
width: 80px;
}
#freelancerButton{
color: rgb(255, 115, 0);
}
.restOfPage{
display: inline;
padding: 0px;
margin: 0px;
}
</style>
</head>
<body>
<div class="header">
<img id="pphlogo" src="pph.png" width="200" height="36">
<button class="button" id="postProjectButton" >POST PROJECT</button>
<button class="button" id="searchButton">SEARCH</button>
<button class="button" id="howItWorksButton">HOW IT WORKS</button>
<button class="button" id="loginButton">LOGIN</button>
<button class="button" id="signUpButton">SIGN UP</button>
<button class="button" id="freelancerButton">FREELANCER?</button>
</div>
<img class="restOfPage" src="restOfPage.png" width="1255" height="500" >
</body>
</html>