Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<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! &#128522 <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 &#128522.</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 &#128522. 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 &#128522.</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

Dismiss x
public
Bin info
Balla1987pro
0viewers