Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created July 18, 2019 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaurel/4fb7b6263ea9226a0150e70055295fae to your computer and use it in GitHub Desktop.
Save ssaurel/4fb7b6263ea9226a0150e70055295fae to your computer and use it in GitHub Desktop.
Chuck Norris Random Facts Application in HTML5
<html>
<head>
<title>Chuck Norris Random Facts in HTML5</title>
<style type="text/css">
#data {
width: 600px;
border: 1px dashed black;
font-size: 20px;
text-align: center;
margin: 0 auto;
margin-top: 50px;
padding: 20px;
}
#logo {
width: 320px;
height: 320px;
margin: 0 auto;
margin-top: 50px;
display: block;
}
</style>
</head>
<body>
<img id="logo" src="chucknorris.png" />
<div id="data" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment