Skip to content

Instantly share code, notes, and snippets.

@hini-manan
Created January 14, 2017 16:56
Show Gist options
  • Save hini-manan/24faa8b585a55f36d749cc680326fce0 to your computer and use it in GitHub Desktop.
Save hini-manan/24faa8b585a55f36d749cc680326fce0 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=24faa8b585a55f36d749cc680326fce0
<!DOCTYPE html>
<html>
<head>
<title>Unit Six!</title>
</head>
<body>
<div class="compasci">
<h1>Hey you!!!</h1>
<h2>Cuál Es Tu Nombre?</h2>
<input id="name">
<button id="submit-name"> SAY HOLA </button>
<p id="greetings"> Hola! </p>
</div>
</body>
</html>
{"enabledLibraries":["jquery"]}
$("submit-name").click(function() {
$("#greeting").append($("#name").val());
});
body{
background-color: rgb(241, 182, 35);
}
.compasci{
padding: 1em 0;
border-bottom: 4px dashed teal;
text-align: center;
}
h1{
font-size: 50px;
text-align: center;
font-family: papyrus;
}
h2{
font-size: 25px;
text-align: center;
text-shadow: 5px 3px 1px rgb(210, 140, 203);
font-family: comic sans ms;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment