well if you tap or click the red test button 15/16, youll get this error : 12. When I click the #submit element, the email is submitted to a static page (use this mock URL: https://www.freecodecamp.com/email-submit).
@ayhanisidici, take a step back and look at what you’ve got. There are some things you should rethink / revisit;
Use external styling. You’ve got a mixture of in-line styles and external. Move all that in-line styling to external.
Look at how you’ve done some of your styling. You have a duplicate declaration for the croissant-photo class. This is line 120
.croissant-photo {
width: 10%;
height: auto;
}
and then on line 131 you have
.croissant-photo {
width: 240px;
height: auto;
Your video is also not scaling
For anything you want to add to the <head> element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.