Skip to content

Commit

Permalink
Starting CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
kunalarya873 committed Oct 11, 2023
1 parent d2389f7 commit a7a2f20
Show file tree
Hide file tree
Showing 6 changed files with 105 additions and 105 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
105 changes: 105 additions & 0 deletions html_class/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Title</title>
</head>
<body>
Hello World
<p>Paragraph</p>
<h1>header1
</h1>
<h2>header2</h2>
<h3>header3</h3>
<h4>header4</h4>
<h5>header5</h5>
<h6>header6</h6>
<p></p>
<a href="https://google.com">Google</a>
<a href="/portfolio/index.html">html</a>

<b>Bold</b>
<u>UNDERLINE</u>
<i>Italic</i>
<small>Small</small>
<big> Big </big>

<header>Header</header>
<main>Main
<section>Section</section>
<aside>This is an ad</aside>

<ol>
<li>Apple</li>
<li>Mango</li>
</ol>
<ul>
<li>Banana</li>
<li>Cherry</li>
</ul>

<caption>
My data
</caption>

<table>
<thead>
<tr><th>
<th colspan="2">Information</th>
Name
</th>
<th>
Class
</th>
</tr>
</thead>
<tr>
<td>
Kunal Arya
</td>
<td>
Btech
</td>
</tr>
</table>

<form action="/action.php">Form<input type="text" placeholder="type something here">
<input type="password" name="Password" id="">
</form>
<label for="id1">
<input type="text" name="Checking" id="id1">
<label for="101">
<input type="radio" name="ka" id="101">1
</label>
<label for="102">
<input type="radio" name="ka" id="102">2
</label>
</label>


<select name="city" id="city">
<option value="Delhi">Delhi</option>
<option value="Bangalore">Bangalore</option>
<option value="Jaipur">Jaipur</option>
</select>

</main>

<label for="math">
<input type="checkbox" value="math" id="101" subject="subject">Math
</label>

<a href="https://google.com" target="_main"><img src="https://1000logos.net/wp-content/uploads/2021/05/Google-logo.png" alt="Google"></a>
<footer>Footer</footer>
<input type="submit">
<iframe width="560" height="315" src="https://www.youtube.com/embed/HcOc7P5BMi4?si=pTUFYhlf7Em8I0Vl" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen>



</iframe>
<video src="https://www.youtube.com/watch?v=HcOc7P5BMi4"></video>
</body>
</html>
File renamed without changes.
105 changes: 0 additions & 105 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,105 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Title</title>
</head>
<body>
Hello World
<p>Paragraph</p>
<h1>header1
</h1>
<h2>header2</h2>
<h3>header3</h3>
<h4>header4</h4>
<h5>header5</h5>
<h6>header6</h6>
<p></p>
<a href="https://google.com">Google</a>
<a href="/portfolio/index.html">html</a>

<b>Bold</b>
<u>UNDERLINE</u>
<i>Italic</i>
<small>Small</small>
<big> Big </big>

<header>Header</header>
<main>Main
<section>Section</section>
<aside>This is an ad</aside>

<ol>
<li>Apple</li>
<li>Mango</li>
</ol>
<ul>
<li>Banana</li>
<li>Cherry</li>
</ul>

<caption>
My data
</caption>

<table>
<thead>
<tr><th>
<th colspan="2">Information</th>
Name
</th>
<th>
Class
</th>
</tr>
</thead>
<tr>
<td>
Kunal Arya
</td>
<td>
Btech
</td>
</tr>
</table>

<form action="/action.php">Form<input type="text" placeholder="type something here">
<input type="password" name="Password" id="">
</form>
<label for="id1">
<input type="text" name="Checking" id="id1">
<label for="101">
<input type="radio" name="ka" id="101">1
</label>
<label for="102">
<input type="radio" name="ka" id="102">2
</label>
</label>


<select name="city" id="city">
<option value="Delhi">Delhi</option>
<option value="Bangalore">Bangalore</option>
<option value="Jaipur">Jaipur</option>
</select>

</main>

<label for="math">
<input type="checkbox" value="math" id="101" subject="subject">Math
</label>

<a href="https://google.com" target="_main"><img src="https://1000logos.net/wp-content/uploads/2021/05/Google-logo.png" alt="Google"></a>
<footer>Footer</footer>
<input type="submit">
<iframe width="560" height="315" src="https://www.youtube.com/embed/HcOc7P5BMi4?si=pTUFYhlf7Em8I0Vl" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen>



</iframe>
<video src="https://www.youtube.com/watch?v=HcOc7P5BMi4"></video>
</body>
</html>

0 comments on commit a7a2f20

Please sign in to comment.