-
Notifications
You must be signed in to change notification settings - Fork 50
/
index.html
114 lines (93 loc) · 4.68 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
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
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8">
<meta name="description" content="First webpage">
<meta name="language" content="HTML">
<meta name="author" content="Crypt">
<title>Cryptic</title>
<link rel="Stylesheet" href="style.css">
<!-- For the text Font -->
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<!--For the play button link from BootstrapCDN-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- embedded playCDN for tailwind here -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/flowbite.min.css" />
</head>
<body>
<div>
<!-- Navbar -->
<nav class="bg-white border-gray-200 px-2 sm:px-4 py-2.5 rounded dark:bg-zinc-900">
<div class="container flex flex-wrap justify-between items-center mx-auto">
<a href="index.html" class="flex items-center">
<img src="assests/image.png" class="mr-3 h-6 sm:h-9" alt="Logo">
<span class="name self-center text-xl font-semibold whitespace-nowrap dark:text-white">Cryptic</span>
</a>
<button data-collapse-toggle="navbar-default" type="button" class="inline-flex items-center p-2 ml-3 text-sm text-gray-500 rounded-lg lg:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600" aria-controls="navbar-default" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<svg class="w-6 h-6" aria-hidden="true" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 15a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1z" clip-rule="evenodd"></path></svg>
</button>
<div class="hidden w-full lg:block lg:w-auto" id="navbar-default">
<ul class="flex ml-auto items flex-col mt-4 bg-zinc-900 rounded-lg border border-gray-100 lg:flex-row lg:space-x-8 lg:mt-0 lg:text-sm md:font-medium lg:border-0 dark:border-gray-700">
<li>
<a href="#" class="links my-2">Home</a>
</li>
<li>
<a href="#" class="links my-2">Services</a>
</li>
<li>
<a href="#" class="links my-2">Products</a>
</li>
<li>
<a href="#" class="links my-2">Contacts</a>
</li>
<li>
<button class="sign-up"><a href="html/login.html" class="sign">SignUp / Login</a></button>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main Content -->
<div class="content-title flex items-center">
<p>Our basic thesis for bitcoin
is that it is better than gold
</p>
</div>
<div class="content-wrapper mb-8">
<div class="content">
<p class="Main_Paragraph">
The world is awash in cash and cryptocurrencies, but Bitcoin is special, with the potential for
significant price gains, according to a new report from Fidelity. Bitcoin is a scarce “monetary good,”
superior in many ways to other cryptos, gold, and even government-issued money like the dollar,
the firm said. “We would expect Bitcoin to be a lot higher five to ten years from now".
</p>
<div class="play-btn p-3">
<div class="btn"><i class="fa fa-play"></i></div>
<div class="flex items-center justify-center">
<a class="more" href="#">LEARN MORE</a>
</div>
</div>
</div>
<div class="pic">
<img src="assests/wallpaperNew.png">
</div>
</div>
<!-- Image -->
<!-- <div id="copyright"><p>©<p> Copyright 2022 <span class="bold"> Diya Gandhi & Vaishnavi Khot | Pvt.Ltd</span>. All Rights Reserved</div> -->
<footer class="copyright flex items-center justify-center">
<div class="p-4 w-full">
<p class="text-center">© Copyright 2022. <span class="bold"> Microsoft Learn Student Community BSIOTR |
Pvt.Ltd</span>. All
Rights Reserved
</div>
</footer>
<script src="https://unpkg.com/[email protected]/dist/flowbite.js"></script>
</body>
</html>