-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtrial.html
76 lines (71 loc) · 2.19 KB
/
trial.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
<!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">
<style>
#minibox {
border-style: double;
border-width: medium;
BORDER-COLOR: GREEN;
border-radius: 5px;
text-align: center;
BACKGROUND-COLOR: lightblue;
}
</style>
</head>
<header>
<div class="container" id="farmex-logo">
FARMEX - SHOP USING CRYPTOCURRENCY
</div>
<div class="container">
<div class="nav-wrapper">
<div class="left-side">
<div class="nav-link-wrapper active-nav-link">
<a href="trial.html">Home</a>
</div>
<div class="nav-link-wrapper">
<a href="about.html">About</a>
</div>
</div>
<div class="right-side">
<div class="brand">
<a href="login.html">LOGIN</a>
</div>
</div>
</div>
<div class="right-side">
<div class="brand">
</div>
</div>
</div>
</header>
<body>
<style>
#bottom-area
{
text-align: center;
/* width: 7em;
border: 10px orange;
padding: 50px;
margin: 20px;
position: relative; */
}
body{
position: relative;
min-height: 100%;
margin: 0;
background-color: white;
font-family: 'Poppins', sans-serif;
font-weight: 500;
overflow-x: hidden;
overflow-y: scroll;
}
</style>
<div id="bottom-area">
LOG IN TO BUY DIRECTLY FROM FARMERS USING CRYPTOCURRENCY! <br/>
<a href="login.html"> LOGIN</a>
</body>
</html>