<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>A Pen by Matt West</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="oval">
Hello World
</div>
</body>
</html>
/*Downloaded from https://www.codeseek.co/matt-west/a-pen-by-matt-west-jrpoXz */
html {
width: 100%;
min-height: 100%:
}
body {
position: relative;
max-width: 100%;
overflow-x: hidden;
}
#oval {
position: absolute;
left: -250px;
right: -250px;
height: 80px;
background: orange;
-moz-border-radius: 70% / 40px;
-webkit-border-radius: 70% / 40px;
border-radius: 70% / 40px;
}