Skip to content

Instantly share code, notes, and snippets.

View drive-slowly's full-sized avatar

SeongHo Park drive-slowly

View GitHub Profile
@drive-slowly
drive-slowly / anchor new tab.html
Last active January 8, 2023 07:16
anchor new tab.html
<p>
Anchor code with new tab.
This is an <a href="https://www.google.com/" target="_blank" rel="noreferrer noopener">example</a>. (Click example again!)
</p>
@drive-slowly
drive-slowly / anchor.html
Last active January 8, 2023 07:17
html5 anchor code
<p>
Anchor code without new tab.
This is an <a href="https://www.google.com/">example</a>. (Click example.)
</p>
@drive-slowly
drive-slowly / hello_world.py
Last active August 31, 2015 08:40
Hello world program written by Python
#This code is for python 3.x not python 2.x.
print('Hello, world!')