https://github.com/tidy-coder/hello
A small collection of "hello world" codes
https://github.com/tidy-coder/hello
css-html css3 hello hello-world helloworld helloworld-programs html html-css html5 python python3
Last synced: 11 months ago
JSON representation
A small collection of "hello world" codes
- Host: GitHub
- URL: https://github.com/tidy-coder/hello
- Owner: Tidy-Coder
- License: mit
- Created: 2024-01-23T20:17:07.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-01T10:28:58.000Z (over 1 year ago)
- Last Synced: 2025-01-31T13:43:42.215Z (about 1 year ago)
- Topics: css-html, css3, hello, hello-world, helloworld, helloworld-programs, html, html-css, html5, python, python3
- Language: HTML
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
hello
A small collection of "hello world" codes.
This collection contains "hello world" codes in multiple languages:
- HTML
- HTML-CSS
- Python
Hello world code in Python:
print("Hello world")
Hello world code in HTML
<html>
<head>
<meta charset="utf-8"/>
<title>Hello world</title>
</head>
<body>
<!-- This file is HTML code -->
<p>Hello world !</p>
</body>
</html>
Hello world code in HTML-CSS
<html>
<head>
<meta charset="utf-8"/>
<title>Hello world</title>
<style>
p{
color: #eee;
}
html{
background-color: #050505;
}
</style>
</head>
<body>
<!-- This file is HTML and CSS code -->
<p>Hello world!</p>
</body>
</html>