Skip to content

Commit

Permalink
class-5-html-intro
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaii committed May 20, 2024
1 parent 9cb2315 commit c02eb72
Show file tree
Hide file tree
Showing 18 changed files with 48 additions and 0 deletions.
Binary file added class-5-html-intro/class-notes/img-a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-b.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-c.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-e.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-f.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-g.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-h.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-i.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-j.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-k.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-l.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-m.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-n.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-o.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-p.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added class-5-html-intro/class-notes/img-q.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 48 additions & 0 deletions class-5-html-intro/html-day1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Mainak</title>
</head>
<body>
<p>I am Mainak Ghosh and I am understanding html</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. A ea totam atque
consequatur. Vel, illum? Maiores iure omnis, officia inventore sapiente,
atque libero quae, est magni eveniet commodi minima optio deleniti vel
ratione nam repellendus odit? Voluptatem ex dolore optio voluptate
laudantium, cum, unde ab hic molestiae quae aperiam? Itaque libero neque
perferendis esse atque, fugit veritatis iusto sapiente illo delectus
consequuntur commodi eaque, nesciunt animi nihil. Nihil iste voluptate
quam quasi a distinctio officia libero cum saepe deleniti fugit soluta
delectus at porro, tenetur aliquid perspiciatis, nostrum expedita tempore
necessitatibus eligendi commodi rem. Fugiat, suscipit. Itaque, harum odio?
</p>
<pre>
This is
Mainak</pre
>

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<hr />
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h7>This is h7</h7>

<!-- unordered list -->

<ul type="square">
<li>apple</li>
<li>banana</li>
</ul>

<ol type="A">
<li>apple</li>
<li>banana</li>
</ol>

<a href="https://en.wikipedia.org/wiki/Dog">This is my first link</a>
</body>
</html>

0 comments on commit c02eb72

Please sign in to comment.