Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Html file #24

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Raiaan Mortuja">
<title>Raiaan Mortuja's Playground</title>
<link rel="icon" type="image/png" href="https://img.icons8.com/dusk/344/globe--v1.png"/>
</head>
<header>
<p>HTML is fun</p>
<header/>
<body>
<main>
<p>I am a 4th year student at UCSD, I hope to learn a lot about the industry in this class.</p>
<nav>
<p> Here is a link to my favourite video game as a child.</p>
<a href=" https://www.spiralknights.com/"> Spiral Knights</a>
</nav>
<section>
<h1>Something that makes me happy</h1>
<p> Coding a difficult problem </p>
<h2>List of names</h2>
<ol>
<il><strong>Powell's GOONs</strong></il>
<il>Milk churners</il>
<il> CAN YOU FEEL MY <em>HEART</em></il>
</ol>
</section>
<details>
<summary>CSE100</summary>
<p>Most fun class I had with code</p>
</details>
<hr>
<img src="https://www.google.com/url?sa=i&url=https%3A%2F%2Flibrary.ucsd.edu%2Fnews-events%2Fgeisellibrary50thanniversary%2F&psig=AOvVaw0irbIAho32nK8k6vA6XyGM&ust=1665464102628000&source=images&cd=vfe&ved=0CAsQjRxqFwoTCNDVlrPv1PoCFQAAAAAdAAAAABAE" alt="My school">
<p> <i>The following is my lovely</i> <b>linkedin</b>.<br> <a href=" https://www.linkedin.com/in/raiaan-mortuja-b793b9204/"> Visit me</a> </p>
<p> A song I like</p>
<audio contorls>
<source src="https://www.soundhelix.com/examples/mp3/SoundHelix-Song-11.mp3" />
</audio>
<p> cool video I found</p>
<video width="300" height="220" controls>
<source src ="https://dl8.webmfiles.org/elephants-dream.webm" type="video.webm">
</video>
<hr>
<h3>My favourite recipe</h3>
<p> Add <span class=ingredient">yogurt</span>,<span class=ingredient">Turmeric</span> and <span> class= "ingredient" garam Masala</span> and mix. </p>
<ul>
<li>Meat</il>
<li>Love</il>
</ul>
</main>
<h4>Tell me about you</h4>
<form action="/action_page.php" method="get">
<fieldset>
<label for="Name"> Name:</label>
<input type="text" id="Name" name="Name"><br>
<label for="review"> UCSD REVIEW:</label>
<textarea id="review" name="review" rows="2" cols="30"></textarea><br>
<label for="l"> You prefer Java,C++ or Python?:</label>
<datalist id="l">
<option value="C++">
<option value="Python">
<option value="Java">
</datalist>
<label for"g"> Now select it:</label>
<select name="g" id="g">
<option value="C++">C++</option>
<option value="Python">Python</option>
<option value="Java">Java</option>
</select>
<button type="button" onclick="alert('WALUWEGI')">Click now please</button>
</fieldset>
</form>

</body>
<footer>
<p> C++ is more fun </p>
<footer/>
</html>