Home HTML Data Types DOM JavaScript JS Debugging Review Ticket

HTML Hacks

Below is a wireframe for an HTML element you will create. A wireframe is a rough visual representation of HTML elements on a page and isn’t necessarily to scale or have the exact styling that the final HTML will have. Using the syntax above, try to create an HTML snippet that corresponds to the below wireframe.


The “a tags” can contain any links that you want

%%html
<div>
    <t>About Myself</t>
    <p>Hi Im Saathvik Gampa, an aspiring computer science developer! I am 15 years old and go to Del Norte High. I am currently in my Sophomore year in high school challenging myself with 3 AP courses. Here are more facts about me:</p>
    <strong>Here is my github if you want to see what I'm working on so far!</strong>
    <a href="https://github.com/sgtech08">
        <button>GitHub</button>
    </a>
</div>
<br>
<br>
<div>
    <h3>Here are my passions</h3>
    <a href = "https://www.google.com/search?q=crypto+p&sourceid=chrome&ie=UTF-8"> Trading Crypto</a>
    <h3>Here is my instagram</h3>
    <a href = "https://www.instagram.com/saathvikg08/">Instagram</a>
    <p>Right now my idea of my passion project is going to be a crypto niche with some sneakers and watches incorporated. If I can learn how, I would like to do a website where you can place orders with crypto and it validates the transaction. Later I get the notification that a order has arrived to purchase their items from my supplier and ship it out to them.</p>
</div>

About Myself

Hi Im Saathvik Gampa, an aspiring computer science developer! I am 15 years old and go to Del Norte High. I am currently in my Sophomore year in high school challenging myself with 3 AP courses. Here are more facts about me:

Here is my github if you want to see what I'm working on so far!

Here are my passions

Trading Crypto

Here is my instagram

Instagram

Right now my idea of my passion project is going to be a crypto niche with some sneakers and watches incorporated. If I can learn how, I would like to do a website where you can place orders with crypto and it validates the transaction. Later I get the notification that a order has arrived to purchase their items from my supplier and ship it out to them.