-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (58 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bevstratov | index</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<p>
borisevstratov's page on the internet
</p>
<p>
check out <a href="https://airtasks.com" target="_blank" rel="noopener noreferrer">my startup</a>
and <a href="https://nextdepot.space" target="_blank" rel="noopener noreferrer">the other one</a>
</p>
<br />
<p>my social media:</p>
<ul>
<li>
<a href="https://www.instagram.com/borisevstratov/" target="_blank" rel="noopener noreferrer">instagram</a>
</li>
<li>
<a href="https://www.facebook.com/evstratov.b/" target="_blank" rel="noopener noreferrer">facebook</a>
</li>
<li>
<a id="onlyfans-link" href="#" target="_blank" rel="noopener noreferrer">onlyfans</a>
<span id="onlyfans-placeholder"></span>
</li>
<li>this space is free for a new social media</li>
<li>this space is free for a new social media</li>
<li>this space is free for a new social media</li>
</ul>
<br />
<br />
<p>unstructured thoughts in markdown: <a
href="https://raw.githubusercontent.com/borisevstratov/knowledge/refs/heads/master/BUSINESS.md"
target="_blank" rel="noopener noreferrer">read here</a> </p>
<br />
<br />
<p>email me: <a href="mailto:[email protected]">[email protected]</a></p>
<p>telegram: <a href="https://t.me/borisevstratov" target="_blank" rel="noopener noreferrer">@borisevstratov</a>
</p>
<div id="time">
<span id="time"></span>
</div>
</div>
</body>
<script src="script.js"></script>
<script>
document.getElementById("onlyfans-link").addEventListener("click", function (event) {
event.preventDefault();
const el = document.getElementById("onlyfans-placeholder");
el.innerHTML = "Are you fr? 😎";
});
</script>
</html>