-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
31 lines (30 loc) · 1.22 KB
/
Copy pathtemplate.html
File metadata and controls
31 lines (30 loc) · 1.22 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cryptocurrency tracking tool</title>
<script src="https://kit.fontawesome.com/f4fd5aa083.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
</head>
<body>
<div class="container">
<div class="main">
<div class="heading">
<h1 class="title">Crypto price search</h1>
</div>
<div class="search_area">
<p>Enter crypto ticker and exchange name</p>
</div>
<div class="search_bar">
<form class="search_form">
<input type="text" class="search" value="BTC/USD Bitfinex" titl="Enter in the following format: BTC/USD Binance" pattern="[A-Z]+\/[A-Z]+\s[a-zA-Z]+" title='Enter in the following format:
"BTC/USD Bitfinex"'>
<button class ="submit"><i class="fas fa-search"></i></button>
</form>
</div>
<div class="prices_container">
</div>
</div>
</div>
</body>
</html>