-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (113 loc) · 3.21 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
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blockchain Researcher Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #222;
color: white;
padding: 30px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 36px;
}
nav {
text-align: center;
margin: 20px 0;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: #333;
font-weight: bold;
}
nav a:hover {
color: #007BFF;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}
h2 {
color: #007BFF;
text-align: center;
margin-bottom: 40px;
}
section {
margin: 40px 0;
}
#about p {
text-align: center;
font-size: 18px;
line-height: 1.6;
}
#links {
text-align: center;
margin: 40px 0;
}
#links a {
display: inline-block;
margin: 10px 15px;
padding: 10px 20px;
background-color: #007BFF;
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
#links a:hover {
background-color: #0056b3;
}
footer {
text-align: center;
padding: 20px 0;
background-color: #222;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Blockchain Researcher</h1>
<p>Exploring and Analyzing Blockchain Projects</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#research">Research</a>
<a href="#contact">Contact</a>
</nav>
<div class="container">
<section id="about">
<h2>About Me</h2>
<p>I am a blockchain researcher with a deep focus on emerging technologies, decentralized platforms, and the future of blockchain applications. My work involves analyzing blockchain projects, evaluating their technical and economic potential, and providing in-depth reports and insights.</p>
</section>
<section id="research">
<h2>Research Areas</h2>
<p>Blockchain Infrastructure, Decentralized Finance (DeFi), Consensus Mechanisms, Security and Privacy in Blockchain, Scalability Solutions, and Tokenomics.</p>
</section>
<section id="contact">
<h2>Connect with Me</h2>
<div id="links">
<a href="https://github.com/famouswizard" target="_blank">GitHub</a>
<a href="https://x.com/famouswizard" target="_blank">Twitter</a>
</div>
</section>
</div>
<footer>
<p>© 2024 Blockchain Researcher</p>
</footer>
</body>
</html>