Untitled
unknown
html
9 days ago
704 B
5
Indexable
Never
<!-- templates/about.html --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>About</title> <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/styles.css') }}"> </head> <body> <header> <h1>About Us</h1> <nav> <a href="/">Home</a> | <a href="/inventory">Inventory</a> <a href="/about">About</a> <a href="/contact">Contact</a> </nav> </header> <main> <p>This is a simple Flask web application. It's designed to demonstrate the basics of Flask.</p> </main> </body> </html>
Leave a Comment