First commit <3

This commit is contained in:
Daniel Cortés
2019-10-27 03:09:29 -03:00
commit 8f13bc2dbe
3 changed files with 368 additions and 0 deletions

128
bookmarks.html Normal file
View File

@@ -0,0 +1,128 @@
<html>
<head>
<title>Bookmarks - Daniel Cortes</title>
<style>
body {
font-family: sans;
font-weight: bold;
background-color: #151517;
color: #daddee;
}
h1 {
width: 100%;
text-align: center;
margin-top: 1em;
}
a {
color: #8cd7aa;
text-decoration: none;
}
ul {
list-style: none;
}
li {
padding-bottom: .3em;
}
h2, a, ul {
padding: 0;
margin: 0;
border: 0;
width: 100%;
text-align: center;
}
h2 {
padding-bottom: .5em;
}
.categories{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.category {
padding: 1em;
margin: 1em;
flex-basis: 20%;
background-color: #18191c;
box-shadow: 3px 3px 10px black;
border-radius: 10px;
}
</style>
</head>
<body>
<h1>Bookmarks</h1>
<div class="categories">
<div class="category">
<h2>articles</h2>
<ul>
<li><a href="https://udacity.github.io/git-styleguide">Udacity Git Commit Message Style Guide</a></li>
<li><a href="https://stackoverflow.com/questions/9554636/the-use-of-multiple-jframes-good-or-bad-practice/9554657">The Use of Multiple JFrames: Good or Bad Practice?</a></li>
</ul>
</div>
<div class="category">
<h2>people blogs</h2>
<ul>
<li><a href="https://sivers.org">Derek Sivers</a></li>
</ul>
</div>
<div class="category">
<h2>agregators</h2>
<ul>
<li><a href="https://news.ycombinator.com">hacker news</a></li>
<li><a href="https://lobste.rs">lobsters</a></li>
<li><a href="https://dev.to">dev.to</a></li>
</ul>
</div>
<div class="category">
<h2>4chan</h2>
<ul>
<li><a href="https://4chan.org">home</a></li>
<li><a href="https://4chan.org/wg/catalog">/wg/</a></li>
<li><a href="https://4channel.org/g/catalog">/g/</a></li>
</ul>
</div>
<div class="category">
<h2>reddit</h2>
<ul>
<li><a href="https://reddit.com">home</a></li>
<li><a href="https://reddit.com/r/unixporn">r/unixporn</a></li>
<li><a href="https://reddit.com/r/chile">r/chile</a></li>
</ul>
</div>
<div class="category">
<h2>tools</h2>
<ul>
<li><a href="https://github.com">github</a></li>
</ul>
</div>
<div class="category">
<h2>downloads</h2>
<ul>
<li><a href="https://rutracker.org">rutracker</a></li>
<li><a href="https://1337x.to">1337x</a></li>
<li><a href="https://rutor.info">rutor</a></li>
<li><a href="https://the-eye.eu">the-eye</a></li>
</ul>
</div>
<div class="category">
<h2>others</h2>
<ul>
<li><a href="https://twitter.com">twitter</a></li>
<li><a href="https://whatsapp.com">whatsapp</a></li>
<li><a href="https://gametabs.net">gametabs</a></li>
<li><a href="https://youtube.com">youtube</a></li>
</ul>
</div>
</div>
</body>
</html>