Build a Video Compilation Page - Build a Video Compilation Page

Tell us what’s happening:

Hi, I am having problems, it seems as though it isn’t accepting my inframe as the third child attribute is my setup wrong? Or is the link the issue? I have tried a couple different ways but if I look at the preview nothing appears.
Am I missing important symbols?
Thank for your help in advance.

Your code so far

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <title>Video Compilation Page</title>
</head>

<body>
    <main>
        <h1>Front End Development End</h1>
      <p>Front End Web Development involves designing and building user interfaces of websites using HTML, CSS, and JavaScript. It focuses on creating visually appealing, interactive, and user-friendly websites. Front End developers ensure accessibility, performance optimization, and adherence to web standards, blending creativity with technical expertise.</p>
      <section>
          <h2>HTML</h2>
          <p>HTML, or HyperText Markup Language, forms the backbone of web pages by defining their basic structure and layout. It uses a series of elements to display text, images, lists, tables, and other static content on a web page.</p>
        
          <inframe
           width="550"
           height="330"
           src="https://youtube.com/embed/GDGejH3SDNQ?si=vQzziFftjRU9LZdT">
           </inframe>
           
      </section>
      <section>
          <h2>CSS</h2>
          <p>CSS, or Cascading Style Sheets, is used to control the visual presentation of HTML elements on a web page. It allows for customized styling, including colors, fonts, layouts, and spacing, making websites visually appealing. CSS also supports responsive design, ensuring web pages look good on all devices.</p>
      </section>
      <section>
          <h2>JavaScript</h2>
          <p>JavaScript is a programming language that adds interactivity to static web pages, enabling dynamic content updates, form validations, animations, and responsive behaviors based on user interactions and events.</p>
      </section>
        
    </main>

</body>

</html>

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1

Challenge Information:

Build a Video Compilation Page - Build a Video Compilation Page

double check the element name, inframe is not a valid element name

1 Like