forked from MLSC-BSOITR/Bootstrap-Static-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (74 loc) · 3.05 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
<!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 -->
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="main">
<!-- Navbar -->
<nav class="'navigation bg-zinc-900 flex flex-wrap">
<div class="flex justify-center p-3 space-x-2 items-center">
<img class="logo hover:scale-150" src="assests/image.png"> <!-- alt ="Cryptic"-->
<span class="name"><a href='index.html'>Cryptic</a></span>
</div>
<ul class="items items-center m-auto justify-center">
<li class="item-1"><a href="" class="links">Home</a> </li>
<li class="item-2"><a href="" class="links">Services</a></li>
<li class="item-3"><a href="" class="links">Products</a></li>
<li class="item-4"><a href="" class="links">Contacts</a></li>
<li class="item-5"><a href="" class="links">Login</a></li>
</ul>
</div>
</nav>
<button class="sign-up"><a href="html/login.html">SignUp / Login</a></button>
</div>
</nav>
</div>
<!-- Main Content -->
<div class="content-title">
<p>Our basic thesis for bitcoin
<br>
is that it is better than gold
</p>
</div>
<div class="home-content" >
<div class="main-content" style="display:flex;">
<div class="bodycontent" >
<div class="content">
<p>
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>
<div class="play-btn">
<div class="btn"><i class="fa fa-play"></i></div>
<a class="more" href="#">LEARN MORE</a>
</div>
<div class="pic">
<img src="assests/wallpaperNew.png">
</div>
</div>
</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 text-center lg:text-left">
<div class="text-center p-4">
<p>© Copyright 2022. <span class="bold"> Diya Gandhi & Vaishnavi Khot | Pvt.Ltd</span>. All Rights Reserved
</div>
</footer>
</body>
</html>