An open API service indexing awesome lists of open source software.

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

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>