-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.html
More file actions
64 lines (61 loc) · 1.91 KB
/
search.html
File metadata and controls
64 lines (61 loc) · 1.91 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Search Cryptos</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="search.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200"
/>
<script defer src="search.js"></script>
</head>
<body>
<main class="main">
<header class="header">
<div class="logo">
<img
src="https://aayusharyan.github.io/cryptoview-project/assets/images/logo.png"
alt=""
/>
CryptoEyeShot
</div>
<div>
<a href="#" class="search-page">
<div></div>
</a>
</div>
</header>
<section class="search-bar">
<form action="">
<input type="text" id="search-input" placeholder="Enter Coin Name" />
<input type="button" id="search-submit" value="Search" />
</form>
</section>
<section class="coin-list-container">
<ul></ul>
</section>
<section class="crypto-details-container">
<span class="material-symbols-outlined close-btn"> cancel </span>
<div class="detail-container-left">
<img src="" id="details-logo" alt="logo" />
</div>
<div class="detail-container-right">
<h2 class="detail-title">Bitcoin</h2>
<p class="price-tags">
<span>5555</span>
<span>55555</span>
<span>5555</span>
<span>55555</span>
</p>
<details class="page-description" open>jdfksjaklksk</details>
</div>
</section>
<footer class="footer">
©CryptoEyeShot | Developed by Aadarsh Raj | AryaCoding
</footer>
</main>
</body>
</html>