Trouble with HTML


I'm a student coder, and my group is working on building an Angular web app that is a library of code, and we are trying to use your embedded compiler, however the resource fails to load only when using HTML which is one of the most important languages for our project. Is anyone else having this issue?

2 Answers

1 year ago by

def fibonacci_till_num(last_num):
a, b = 0, 1
while a <= last_num:
print(a, end=' ')
a, b = b, a+b
number = int(input('please enter one natural number: '))
fibonacci_till_num(number)

1 year ago by Syed Thousif

It's because you're online, never works for me either, so if you are making mutiple html files just use your own computer and make html files, but if not use the

 <script> and <style>
1 year ago by edwardo is alpha