skip to Main Content

Html – Flask: Can't access secondary page via href

Python Code import openai app = Flask(__name__) app.debug = True #audio_file= open("/path/to/file/audio.mp3", "rb") #transcript = openai.Audio.transcribe("whisper-1", audio_file) @app.route('/') def hello_flask(): return render_template('landing.html') if __name__ == '__main__': app.run() HTML Code of Main Page (landing.html) <html> <head> <title>komodo.ai</title> <link rel="stylesheet" href="static/styles.css"> <meta…

VIEW QUESTION

Html – How to center this div I have already done justify-content: center; align-items: center. Still the container div is not getting centered

The container is not stack at the center of the body HTML code:- <body> <div class="container"> <div class="image"> <img src="./images/image-qr-code.png" alt="qrcode"> </div> <div class="heading"> <h2>Improve your front-end skills by building projects</h2> <p>Scan the QR code to visit Frontend Mentor and…

VIEW QUESTION
Back To Top
Search