-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
263 lines (252 loc) · 8.29 KB
/
blog.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!doctype html>
<html amp lang="en">
<head>
<meta charset="utf-8">
<script async src="https://cdn.ampproject.org/v0.js"></script>
<title>Blog</title>
<link rel="canonical" href="https://amp.dev/documentation/guides-and-tutorials/start/create/basic_markup/">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
<script async custom-element="amp-sidebar" src="https://cdn.ampproject.org/v0/amp-sidebar-0.1.js"></script>
<script async custom-element="amp-social-share" src="https://cdn.ampproject.org/v0/amp-social-share-0.1.js"></script>
<style amp-custom>
html {
overflow: scroll;
}
body { position: absolute; }
.hamburger {
padding: 12px;
float: right;
color:white;
font-size: 28px;
}
.sidebar {
padding: 10px;
margin-top:16px;
}
.sidebar > li {
list-style: none;
margin-bottom:10px;
padding:8px;
}
.amp-sidebar{
background-color:#fe8c50;
width:40%;
color:white;
}
.close-sidebar {
font-size: 1.5em;
padding-right:8px;
float:right;
}
a {
color:white;
text-decoration:none;
}
.headerbar{
position:fixed;
top: 0;
z-index:2;
height:80px;
background-color:#fe8c50;
list-style: none;
width: 100%;
margin: 0;
padding: 0;
white-space: nowrap;
overflow-x: auto;
overflow-y: hidden;
}
.site-name{
display: inline-block;
color:white;
margin-left: 8%;
}
.content{
height: 100%;
color: black;
border-style: ridge;
color: grey;
padding: 8px;
margin: 8px;
width: 70%;
}
.footer{
text-align: center;
padding: 8px;
height: 30%;
width: 100%;
background-color: rgb(80, 77, 77);
}
.info{
width: 95%;
height: 80%;
}
.contact{
width: 95%;
height: 80%;
}
.title{
margin:0px;
padding:0px;
font-size: 42px;
color: white;
}
.content{
width:90%;
font-size: 14px;
margin-bottom:16px;
padding-top: 0px;
margin-top: 0px;
}
.data{
padding:0px;
margin:0px;
color: white;
font-size: 14px;
}
.main{
padding-top: 0px;
margin-top: 0px;
}
.top{
margin-top:50px;
padding-top: 8px;
padding-left: 16px;
padding-bottom: 0px;
color: #000;
font-size: 28px;
}
.end{
color:white;
font-size:10px;
}
#title,#date,#content{
padding:2px;
margin:2px;
color:black;
}
button{
margin: 8px;
background-color: transparent;
border-color: #fe8c50;
color: #fe8c50;
height: 30px;
border-radius: 4px;
}
</style>
</head>
<body>
<header class="headerbar">
<div class="site-name"><h1>Botsfolio</h1></div>
<div role="button" on="tap:sidebar1.toggle" tabindex="0" class="hamburger" >☰</div>
</header>
<amp-sidebar id="sidebar1" layout="nodisplay" side="right" class="amp-sidebar">
<div role="button" aria-label="close sidebar" on="tap:sidebar1.toggle" tabindex="0" class="close-sidebar">✕</div>
<ul class="sidebar">
<li><a href="#">Telegram</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">News</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Login</a></li>
</ul>
</amp-sidebar>
<div class="top">
<h1>Botsfolio</h1>
</div>
<div class="main">
<div class="content" >
<h1 id="title">
Tips to Earn Bitcoins: 6 Tried-and-True Methods
</h1>
<h6 id ="date">
27 Jan 2021
</h6>
<h4 id="content">
If you want something valuable, you need to put in the work to earn it -- or spend money to buy it. This timeless notion also applies for getting bitcoins. If you want to get a substantial amount of bitcoins fast, you need to spend some money ... </h4>
<a href="blog_detail.html"><button >Read More</button></a>
<amp-img src="https://botsfolio.com/static/news/Tips_to_earn_bitcoins.png" layout="responsive" width="400" height="200" id="image" >
</amp-img>
</div>
<div class="content" >
<h1 id="title">
RIPPLE XRP: THE COMPLETE GUIDE
</h1>
<h6 id ="date">
23 Jan 2021
</h6>
<h4 id="content">
What is Ripple? This has been the most prominent name within the cryptocurrency space. In short, Ripple is a payment protocol that facilitates fast, frictionless cross-border payments with minimal fees. This payment protocol also hosts its native ass
</h4>
<a href="blog_detail.html"><button >Read More</button></a>
<amp-img src="https://botsfolio.com/static/news/RIPPLE_XRP__THE_COMPLETE_GUIDE.png" layout="responsive" width="400" height="200" id="image" >
</amp-img>
</div>
<div class="content" >
<h1 id="title">
BITCOIN VS ETHEREUM, WHICH IS BETTER? WHAT ARE THEIR ALTERNATIVES?
</h1>
<h6 id ="date">
23 Jan 2021
</h6>
<h4 id="content">
Both Bitcoin and Ethereum are the most widely discussed cryptocurrencies, especially after the unparalleled bull run at the end of 2017 launched prices to unseen heights. While Bitcoin and Ethereum are among the leading and most popular cryptocurrenc </h4>
<a href="blog_detail.html"><button >Read More</button></a>
<amp-img src="https://botsfolio.com/static/news/BITCOIN_VS_ETHEREUM_WHICH_IS_BETTER_WHAT_ARE_THEIR_ALTERNATIVES.png" layout="responsive" width="400" height="200" id="image" >
</amp-img>
</div>
<div class="content">
<h1 id="title">
Bitcoin Mining
</h1>
<h6 id ="date">
23 Jan 2021
</h6>
<h4 id="content">
Bitcoin mining is a term that everyone in the cryptocurrency and even many outsiders are very familiar with. Bitcoin Mining is the process performed by high-powered computers (also known as nodes), which solve complicated computational math problems. </h4>
<a href="blog_detail.html"><button >Read More</button></a>
<amp-img src="https://botsfolio.com/static/news/Bitcoin_Mining.png" layout="responsive" width="400" height="200" id="image" >
</amp-img>
</div>
</div>
<div class="footer">
<div class="info">
<h1 class="title" >Botsfolio</h1>
<p class="content">With any investment, your capital is at risk. The value of your portfolio with Botsfolio can go down as well as up and you may get back less than you invest. Past performance is no guarantee of future results. Read our (investment risk disclosure) for more information. By using this website, you accept our (Privacy Policy)</p>
</div>
<div class="contact">
<p class="data">
Contact us
</p>
<p class="data">
KribX Inc. , USA</p>
<amp-social-share
type="facebook"
aria-label="Share on facebook"
class="social"
width="30"
height="30"
></amp-social-share>
<amp-social-share
type="twitter"
aria-label="Share on Twitter"
class="social"
width="30"
height="30"
></amp-social-share>
<amp-social-share
type="linkedin"
aria-label="Share on linkedin"
class="social"
width="30"
height="30"
></amp-social-share>
</div>
<p class="end">
© 2020 Botsfolio
</p>
</div>
</body>
</html>