Untitled
unknown
html
5 months ago
1.8 kB
5
Indexable
<!-- templates/inventory.html --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/styles.css') }}"> </head> <body> <header> <h1>Inventory</h1> <nav> <a href="/">Home</a> | <a href="/inventory">Inventory</a> <a href="/about">About</a> <a href="/contact">Contact</a> <a href="/inquiry">Inquiry</a> </nav> </header> <main> <div class="containerblack"> <div class="groupall" id="animationspin"> <div class="paddle paddle1" id="aa"> <div class="letterleft">a</div> <div class="letterright">A</div> </div> <div class="paddle paddle2" id="bb"> <div class="letterleft">e</div> <div class="letterright"><img src="static/images/scorpio.png" alt ="scorpio" width = "150" height = "200"></div></div> <div class="paddle paddle3" id="cc"> <div class="letterleft">m</div> <div class="letterright"> <img src="static/images/prism.png" alt ="prism error" width = "150" height = "200"></div></div> <div class="paddle paddle4" id="dd"> <div class="letterleft"><img src="static/images/lf.png" alt ="ls error" width = "150" height = "200"></div> <div class="letterright" style="color:rgba(0, 0, 0, 0.4);"><img src="static/images/fartingunicorn.png" alt ="farts" width = "150" height = "200"></div></div></div> </div><!-- groupall --> </div><!-- containerblack --> <a onclick='document.getElementById("animationspin").classList.toggle("groupallpaused")'><div class="button">STOP/START</div></a> <p>This is a simple Flask web application. It's designed to demonstrate the basics of Flask.</p> </main> </body> </html>
Editor is loading...
Leave a Comment