25 lines
604 B
HTML
25 lines
604 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Learn Enough Python Sample App</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/stylesheets/main.css">
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400"
|
|
rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<a href="/" class="header-logo">
|
|
<img src="/static/images/logo_b.png" alt="Learn Enough logo">
|
|
</a>
|
|
<div class="container">
|
|
<div class="content">
|
|
|
|
<h1>Palindrome Detector</h1>
|
|
|
|
<p>This will be the palindrome detector.</p>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|