A small collection of "hello world" codes.
This collection contains "hello world" codes in multiple languages:
- HTML
- HTML-CSS
- Python
print("Hello world")
<html>
<head>
<meta charset="utf-8"/>
<title>Hello world</title>
</head>
<body>
<!-- This file is HTML code -->
<p>Hello world !</p>
</body>
</html>
<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>