Skip to content

Instantly share code, notes, and snippets.

@WondwosenTsige
Last active October 27, 2019 06:59
Show Gist options
  • Save WondwosenTsige/e711a8c3445b6f5431b13b079d712e38 to your computer and use it in GitHub Desktop.
Save WondwosenTsige/e711a8c3445b6f5431b13b079d712e38 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Demo Class 01</title>
<style>
h1{ background-color: red; color: yellow;}
</style>
</head>
<body>
<header>
</header>
<main>
<h1> Class 1 Lab</h1>
<p style=color:blue;> What is your name</p>
<p style=color:green;> How old are you?</p>
<p style=color:red; > Wheree are you from?</p>
<p style=color:turquoise;>What do you like to eat</p>
<script>
var visitorName = prompt('what is your name?')
console.log(visitorName)
var visitorAge =prompt("how old are you?")
console.log(visitorAge)
var visitorCountry = prompt ("Where are you from?")
console.log(visitorCountry)
var visitorFood = prompt ("What is your favorite food?")
console.log(visitorFood)
alert ("Hi Guys! I am " +visitorName+ "From "+visitorCountry + ". I lived on planet earth for "+ visitorAge +" years eating "+visitorFood)
</script>
<footer>
</footer>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment