Fix links opening in current tab
This commit is contained in:
parent
82b3fce09f
commit
fb237e9c1f
1 changed files with 58 additions and 58 deletions
116
index.html
116
index.html
|
@ -2,67 +2,67 @@
|
|||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>~/startpage</title>
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>~/startpage</title>
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="left-container">
|
||||
<div class="gif">
|
||||
<img class='vapor' src="cat.gif" width="450px" height="400px" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="right-container">
|
||||
<div class="head">
|
||||
<p>> cd ~/<span class="blinking">_</span></p>
|
||||
</div>
|
||||
|
||||
<div class="bookmarks">
|
||||
<div class="category">
|
||||
<div class="links">
|
||||
<li class="title">daily</li>
|
||||
<li><a href="https://mail.tutanota.com">tutanota</a></li>
|
||||
<li><a href="https://mail.protonmail.com">protonmail</a></li>
|
||||
<li><a href="https://www.youtube.com">youtube</a></li>
|
||||
<li><a href="https://reddit.com/">reddit</a></li>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
<div class="links">
|
||||
<li class="title">dev</li>
|
||||
<li><a href="https://github.com/">github</a></li>
|
||||
<li><a href="https://stackoverflow.com/">stackoverflow</a></li>
|
||||
<li><a href="https://distrowatch.com/">distrowatch</a></li>
|
||||
<li><a href="https://devdocs.io/">devdocs</a></li>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
<div class="links">
|
||||
<li class="title"><a style="color: #EADBB2" href="https://reddit.com">reddit</a></li>
|
||||
<li><a href="https://reddit.com/r/programming/">r/programming</a></li>
|
||||
<li><a href="https://reddit.com/r/archlinux/">r/archlinux</a></li>
|
||||
<li><a href="https://reddit.com/r/unixporn/">r/unixporn</a></li>
|
||||
<li><a href="https://reddit.com/r/linuxmasterrace/">r/linuxmr</a></li>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
<div class="links">
|
||||
<li class="title">fun</li>
|
||||
<li><a href="https://monkeytype.com/">monkeytype</a></li>
|
||||
<li><a href="https://twitter.com/">twitter</a></li>
|
||||
<li><a href="https://twitch.tv/">twitch</a></li>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="left-container">
|
||||
<div class="gif">
|
||||
<img class='vapor' src="cat.gif" width="450px" height="400px" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="right-container">
|
||||
<div class="head">
|
||||
<p>> cd ~/<span class="blinking">_</span></p>
|
||||
</div>
|
||||
|
||||
<div class="bookmarks">
|
||||
<div class="category">
|
||||
<div class="links">
|
||||
<li class="title">daily</li>
|
||||
<li><a href="https://mail.tutanota.com" target="_blank">tutanota</a></li>
|
||||
<li><a href="https://mail.protonmail.com" target="_blank">protonmail</a></li>
|
||||
<li><a href="https://www.youtube.com" target="_blank">youtube</a></li>
|
||||
<li><a href="https://reddit.com/" target="_blank">reddit</a></li>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
<div class="links">
|
||||
<li class="title">dev</li>
|
||||
<li><a href="https://github.com/" target="_blank">github</a></li>
|
||||
<li><a href="https://stackoverflow.com/" target="_blank">stackoverflow</a></li>
|
||||
<li><a href="https://distrowatch.com/" target="_blank">distrowatch</a></li>
|
||||
<li><a href="https://devdocs.io/" target="_blank">devdocs</a></li>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
<div class="links">
|
||||
<li class="title"><a style="color: #EADBB2" href="https://reddit.com">reddit</a></li>
|
||||
<li><a href="https://reddit.com/r/programming/" target="_blank">r/programming</a></li>
|
||||
<li><a href="https://reddit.com/r/archlinux/" target="_blank">r/archlinux</a></li>
|
||||
<li><a href="https://reddit.com/r/unixporn/" target="_blank">r/unixporn</a></li>
|
||||
<li><a href="https://reddit.com/r/linuxmasterrace/" target="_blank">r/linuxmr</a></li>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="category">
|
||||
<div class="links">
|
||||
<li class="title">fun</li>
|
||||
<li><a href="https://monkeytype.com/" target="_blank">monkeytype</a></li>
|
||||
<li><a href="https://twitter.com/" target="_blank">twitter</a></li>
|
||||
<li><a href="https://twitch.tv/" target="_blank">twitch</a></li>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue