-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (50 loc) · 2.4 KB
/
index.html
File metadata and controls
55 lines (50 loc) · 2.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="main.css">
<meta name="theme-color" content="#ffdd00">
<meta name="author" content="lim10dev">
<meta name="application-name" content="lim10dev">
<meta name="description" content="My website!">
<meta name="keywords" content="limon, lim10, lim, lim10dev">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="lim10dev.png" property="og:image">
<title>lim10dev</title>
</head>
<body>
<img id="limg" src="lim10dev.png">
<h1 id="selam">Hey there! 👋 </h1>
<h2 id="benlim10">I'm lim10dev and i love lemons!<br></h2>
<hr>
<h2 id="webler">Here are my web projects:</h2>
<ul>
<li><a href="goose-customizer/">Desktop Goose Customizer</a></li>
<li><a href="kusdili/">Kuş Dili Çevirici</a></li>
<li><a id="mantik" href="logic/">Logic Calculator</a></li>
<li><a href="ebob-ekok/">EBOB EKOK Hesaplayıcısı</a></li>
<li><a href="taban/">Taban Hesaplayıcısı</a></li>
<li><a href="elektron-dizilimi/">Elektron Dizilimi</a></li>
</ul>
<hr> 🔗
| <a target="_blank" href="https://www.youtube.com/channel/UCT4eI71R1QwvstWb28Y8vxw/">YouTube</a> |
<a target="_blank" href="https://github.com/lim10dev">GitHub</a> |
<a target="_blank" href="https://discord.gg/guchhN5wcn">Discord</a> |
<a target="_blank" href="https://twitter.com/lim10dev">Twitter</a> |
<a target="_blank" href="https://lim10dev.itch.io/">Itch</a> |
<script>
var selam = document.getElementById("selam");
var benlim10 = document.getElementById("benlim10");
var webler = document.getElementById("webler");
var mantik = document.getElementById("mantik");
var userLang = navigator.language;
if(userLang == "tr-TR"){
selam.innerText = "Merhaba! 👋";
benlim10.innerText = "Ben lim10dev ve limonları severim!";
webler.innerText = "İşte internet projelerim:";
mantik.innerText = "Mantık Hesaplayıcısı";
}
</script>
</body>
</html>