Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

pyscript not showing

I am using pyscript and typed in this code
Code:
<!DOCTYPE html>
<html>
    <link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
<body>
<title>Making transactions so much easier! Fruit Surf</title>
<h1>FruitSurf</h1>
<p>This website is not up yet</p>
<p>What is this website going to be?</p>
<p>Fruit serf is a website that works like venmo or paypal. You sign up for an account with your credit card number and your email. You can enter a give value and a recieve value (If you are doing a loan). The money you give you have to pay interest for. You may ask for the other person to pay the interest with the recieve command. Fruitsurf makes loans and transactions way easier
    
</html>


<html>
<head>
        <meta-charset name="viewport" content="width=device-width, initial-scale=1" >
            </meta-charset>
    </head>
    
    <body>
        <py-script>
    import.sqlite3
    print("Please enter the last four digits of you number")
    Last4digits = input()
    print("please enter a valid password")
    Password = input()
    print("please enter a valid username")
    Username = input()
    Account information = [
    (Last4digits, Password, Username)
</py-script>
    </body>
</html>
.
(It is clearly not finished.)
I need help for the widget to show up on the website. and the edge dev tools keep telling me errors that I already fixed.
 
Only one <html></html> - you have two.
<meta-charset ... does not need to be closed with </meta-charset>.
Put the code before the <meta-charset> after the <meta-charset> so that it appears in the <head>.

See how that works for ya.
 

New Threads

Buy us a coffee!

Back
Top Bottom