-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
89 lines (84 loc) · 2.63 KB
/
index.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title> Farmex | Online shopping</title>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="trial_style.css">
<style>
#minibox {
border-style: double;
border-width: medium;
BORDER-COLOR: GREEN;
border-radius: 5px;
text-align: center;
BACKGROUND-COLOR: lightblue;
}
</style>
</head>
<header>
<ul class="topnav">
<li><a class="active" href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="display.html">Browse Items</a></li>
<li class="right"><a href="login.html">LOGIN</a></li>
</ul>
</header>
<body class="img">
<style>
#bottom-area
{
text-align: center;
position: relative;
}
.img
{
background-image: url('images/abstract.png');
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
img{
width: 50%;
height: 400px;
background-repeat: no-repeat;
background-size: contain;
}
body, html{
height: 100%;
margin: 0;
}
h2, H1
{
font:bold;
font-weight: bolder;
background-color: orange;
}
.button
{
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
</style>
<div class="img">
<div id="bottom-area">
<h1> FARMEX - BUY AND SELL USING CRYPTOCURRENCY</h1>
<br/><H2>LOG IN TO BUY DIRECTLY FROM FARMERS USING CRYPTOCURRENCY! </h2><br/>
<div>
<img src="images/fruitbasket.jpg"/>
</div >
<div class="button"> <a href="login.html">LOGIN</a> </div>
</div>
</div>
</body>
</html>