skip to Main Content

Html – Align text to left and image to right side of the page

Can somebody please help me how to make the image show up on the right side? I can't figure out why it's not doing anything. @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); body { margin: 0; background-color: #000; color: #eee; font-family: Poppins; font-size: 12px; }…

VIEW QUESTION

Html – simple javascript code linked with flask not working

Home.html file: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Home</title> <link rel="stylesheet" type="text/css" href="{{url_for("static",filename="css/css.css")}}"> </head> <body> <h1>Welcome to recipe book</h1> <p>{{length}}</p> <script> const amount = {{length}}; console.log(amount); </script> </body> </html> main.py Flask python file: #,redirect,url_for,send_from_directory, from flask import Flask,render_template import os…

VIEW QUESTION
Back To Top
Search