Skip to content

D4RK-C0D3/test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

test

A Test Directory For My Further Coding Practices.

HTML is the standard markup language for Web pages.

With HTML you can create your own Website.

HTML is easy to learn.

HTML Code Syntex :

<!DOCTYPE html>
<html>
    <head>
        <title>Page Title</title>
    </head>
    <body>

        <h1>This is a Heading</h1>
        <p>This is a paragraph.</p>

    </body>
</html>

CSS is a language that describes the style of an HTML document.

CSS describes how HTML elements should be displayed.

CSS Code Syntex :

body {
  background-color: dodgerblue;
}

h1 {
  color: white;
  text-align: center;
}

p {
  font-family: verdana;
  font-size: 20px;
}

JavaScript is the programming language of HTML and the Web.

JavaScript is easy to learn.

Javascript Code Syntex :

document.write("Hello, World !!!\n")
console.log("Hello, World !!!\n")

About

This is my test directory

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published