-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (128 loc) · 4.61 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<title>Jaydsite - Version 1.3.0</title>
<meta name="description" content="Just a personal project.">
<meta name="author" content="Jayd">
<meta name="copyright" content="Jayd">
<meta rel="icon" href="2024_10_25_123_Kleki.png">
<meta property="og:image" content="2024_10_25_123_Kleki.png">
<style>
.Div_center {
border: 5px outset #c8a2c8;
background-color: #00000080;
text-align: center;
position: relative;
width: 1000px;
margin: auto;
}
.Div_utterances {
border: 5px outset #c8a2c8;
background-color: #00000080;
text-align: center;
position: relative;
width: 1000px;
height: 700px;
margin: auto;
overflow: scroll;
}
.Div_main {
border: 5px outset #c8a2c8;
background-color: #00000080;
text-align: center;
position: relative;
width: 1200px;
margin: auto;
}
.Div_BTN {
border: 5px outset #c8a2c8;
background-color: #00000080;
text-align: center;
position: relative;
width: 1000px;
margin: auto;
}
.Div_BAR {
border: 5px outset #c8a2c8;
background-color: #00000080;
text-align: center;
position: relative;
width: 1100px;
height: 50px;
margin: auto;
}
</style>
</head>
<link href='https://fonts.googleapis.com/css?family=Comfortaa' rel='stylesheet'>
<body style="background-color:#808080;">
<div class="Div_main" style='background-image: url("https://images7.alphacoders.com/135/thumb-1920-1350954.png"); background-size: auto; background-repeat: no-repeat;'>
<br>
<div class="Div_BAR">
<b><p3><a href="https://jayd-rubies.github.io/blog.html"> |-Blog-| </a></p3></b> <b><p3><a href="https://jayd-rubies.github.io/others.html"> |-Others-| </a></p3></b> <b><p3><a href="https://jayd-rubies.github.io/bsky.html"> |-Important Posts-| </a></p3></b>
</div>
<h1>Jaydsite</h1>
<h2> V1.3.0</h1>
<div class="Div_BAR">
<button class="tabs" onclick="changePage(about,social,more)">About</button>
<button class="tabs" onclick="changePage(social,more,about)">Social</button>
<button class="tabs"onclick="changePage(more,about,social),scrolldown()">More</button>
</div>
<br>
<div id="about">
<div class="Div_center">
<h3>About me!</h3>
</div>
<br>
<div class="Div_center">
<p2><br>Hello! I go by the online handle of Jayd, I am a decently experience developer specializing in frontend. Javascript is my main language, and I use HTML to makes web pages.
<br>
</p2>
</div>
</div>
<div id="social">
<div class="Div_BTN">
<b><h3>My Socials</h3></b>
<b><p3><a href="https://jayd-rubies.bsky.social">Bluesky</a></p3></b>
</div>
<br>
<div class="Div_BTN">
<b><h3>Buttons</h3></b>
<a href="https://R74n.com"><img src="https://R74n.com/icons/88x31.png" alt="R74n"></a>
<a href="https://jayd-rubies.github.io"><img src="https://jayd-rubies.github.io/image/button.png" alt="Jaydsite"></a>
<br>
</div>
</div>
<br>
<div class="Div_utterances" id="more">
<script src="https://utteranc.es/client.js"
repo="Jayd-Rubies/Jayd-Rubies.github.io"
issue-term="pathname"
theme="gruvbox-dark"
crossorigin="anonymous"
async>
</script>
</div>
<br>
<script>
function scrolldown(){
window.setTimeout(function() {
var elem = document.getElementById('more');
elem.scrollTop = elem.scrollHeight;
}, 2000);
}
var social = document.getElementById("social");
var about = document.getElementById("about")
var elem = document.getElementById('more');
social.style.display = "none";
elem.style.display = "none";
function changePage(dest, sec1, sec2){
sec1.style.display = "none"
sec2.style.display = "none"
dest.style.display = "block"
}
</script>
</div>
</div>
</body>
</html>