Skip to content

Tidy-Coder/hello

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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>