forked from CodeMaverick-143/Intro-to-crypto-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (104 loc) · 3.75 KB
/
index.html
File metadata and controls
105 lines (104 loc) · 3.75 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto-Basics</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<div id="header">
<img src="/image/LOGO.png" alt="logo">
<div id="nav">
<a href="#intro-content" alt = "Home">Home</a>
<a href="#about-content" alt = "About">About</a>
<a href="#work-content" alt="Work">Work</a>
<a href="#future-content" alt="future">Future</a>
<a href="#contact-content" src="contact">Contact</a>
</div>
</div>
<!-- Introduction -->
<section style="background-image: url('/image/cr1.jpg'); background-size: cover; background-position: center; height: 100vh;">
<div id="intro-content">
<h1>
Understanding Cryptocurrency
</h1>
<h3>
A Beginner's Guide to Digital Currency
</h3>
<button href="intro">Start Learning
</button>
</div>
</section>
<!-- About -->
<section style="background-image: url('/image/cr2.jpg'); background-size: cover; background-position: center; height: 100vh;">
<div id="about-content">
<h1>
What is Cryptocurrency?
</h1>
<h3>
A brief explanation of cryptocurrency, its origins, and significance
</h3>
<button href="intro">Start Learning
</button>
</div>
</section>
<!-- Working -->
<section style="background-image: url('/image/cr3.jpg'); background-size: cover; background-position: center; height: 100vh;">
<div id="work-content">
<h1>
How Does Cryptocurrency Work?
</h1>
<h3>
About Technology,Mining,Wallets
</h3>
<button href="intro">
Start Learning
</button>
</div>
</section>
<!-- Future -->
<section style="background-image: url('/image/cr4.jpg'); background-size: cover; background-position: center; height: 100vh;">
<div id="future-content">
<h1>
Future of Cryptocurrency
</h1>
<h3>
Trends, Challenges, and Opportunities
</h3>
<button href="intro">
Start Learning
</button>
</div>
</section>
<!-- Contact Team -->
<section>
<div id="contact-content">
<h1>Let's Collaborate..~</h1>
<!-- Arpit Srang -->
<div class="person">
<img src="image/ar.jpg" alt="person">
<a href="https://codemaverick-143.github.io/My-Portfolio/" alt="Name" target="_blank">Name:Arpit Sarang</a>
<a href="https://github.com/CodeMaverick-143" alt="Github" target="_blank">Github:Codemaverick-143</a>
</div>
<!-- Ganesh Wayal -->
<div class="person">
<img src="/image/gw.jpg" alt="person">
<a href="#portfolio" alt="Name" target="_blank">Name:Ganesh Wayal</a>
<a href="https://github.com/ganesh3367" alt="Github" target="_blank">Github:ganesh3367</a>
</div>
<!-- Proyan Sen -->
<div class="person">
<img src="image/pr.jpg" alt="person">
<a href="https://my-protfolio-78l35o4ep-praggcodes-projects.vercel.app" alt="Name" target="_blank">Name:Progyan Sen</a>
<a href="https://github.com/praggCode" alt="Github" target="_blank">Github:praggCode</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2024 :Hashers Developers</p>
</footer>
</body>
</html>