<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<title>Online névjegy</title>
<body onload = "startTime();">
</head>
<body>
<div class="container">
<img src="https://i.imgur.com/wcuOo1b.jpg" alt="Balla Gergely" style="width:200px; height:160px;">
<h1>Balla Gergely, web-programozó gyakornok</h1>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#magyar">Magyar nyelvű</a></li>
<li><a data-toggle="tab" href="#english">In English</a></li>
<li><a data-toggle="tab" href="#deutsch">In Deutsch</a></li>
</ul>
<div class="tab-content">
<div id="magyar" class="tabe-pane fade in active">
<p>Üdvözlöm! Nyilván nem véletlenül tévedt erre az oldalra, így gyorsan be is mutatkoznék! 😊 <br> Balla Gergely vagyok, és jelenleg a CodeBerry iskolánál sajátítom el, a web-probramozás alapjait (HTML,CSS, Javascript,Node.js).</br> Bécsben élek a csodálatos feleségemmel, lassan már három éve.</br> Németül, és angolul is beszélek, vagy legalábbis az említett nyelveken nem tudnak eladni 😊.</p>
<p> Ha szeretne kapcsolatba lépni velem, akkor a lent látható ikonok bármelyikén megteheti,</br> illetve írhat e-mailt a: <span> balla.gergely1987@gmail.com-ra!</span></p>
</div>
<div id="english" class="tab-pane fade">
<p>Hello world, or welcome in my world! My name is Balla Gergely, und I study web-developing since a year in Codeberry online school. I search a good job, where I can really improve of myself, and where I can be part of a really good team. As you recognized, I love Bootstrap-technologies, and I understand HTML, CSS and Javascript methods. I'm not an expert yet, but I'm ready to learn new things and discover new ways of web-developing.</p>
<p>I like dicover new places, walk on the streets or a forest. I live Vienna with my wife, and I love this city. Sometimes I go to the gym, and I love cycling. I'm not a lazy type 😊. I speak also German. If you wish to contact with me, please send an e-mail, for the <span>"balla.gergely1987@gmail.com"</span> adress.</p>
</div>
<div id="deutsch" class="tab-pane fade">
<p>Hello Welt! Mein Name is Balla Gergely, und ich lerne derzeit web-developing bei der Codeberry Online-Schule. Ich liebe Bootstrap-technologie, und I verstehe schon HTML,CSS und Javascript. I suche einen gute Arbeitsplätze, wo kann ich mich verbessern und ich kann mit guten Kollegen zusammenabeiten. I lerne schnell, und ich bin nicht ein faule Typ 😊.</p>
<p> Ich lebe in Wien mit meiner Frau. Ich liebe diese Stadt, weil hier viele Möglichkeit gibt es (nicht nur in Arbeit, sondern auch Kultur in alle Type). Meine Muttersprache ist ungarisch, aber ich spreche auch englisch. Wenn Sie mit mir anknüpfen möchten, dann schicke eine e-mail für diese Adresse: <span>"balla.gergely1987@gmail.com".</span></p>
</div>
</div>
<footer>
<hr>
<a href="https://www.facebook.com/Hajnalfigyelo" target="_blank"><i class="fab fa-facebook-square"></i></a><a href="https://imgur.com/user/BallaGergely" target="_blank"><i class="fas fa-file-image"></i></a>
</footer>
<div id="time"></div>
</body>
</html>
function startTime() {
var d = new Date();
var h = d.getHours();
var m = d.getMinutes();
var s = d.getSeconds();
m = checkTime(m);
s = checkTime(s);
document.getElementById("time").innerHTML=h+":"+m+":"+s+", Vienna";
t = setTimeout('startTime()',500);
}
function checkTime(i){
if(i<10){
i="0"+i;
}
return i;
}
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |