Skip to content

Commit 5d11dbe

Browse files
committed
Added Level 1 files and assignment
1 parent c49ff7e commit 5d11dbe

7 files changed

+150
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>This is the title!</title>
7+
</head>
8+
<body>
9+
10+
<!-- This is the comment sectin -->
11+
<h1>This is the heading</h1>
12+
13+
<h2>This a h2 heading</h2>
14+
15+
<h3>Heading 3</h3>
16+
17+
<h6>heading 6</h6>
18+
19+
<p>It's a paragraph <br>
20+
This is line 2 <br>
21+
This is line 3 <br>
22+
</p>
23+
24+
<p><strong>The new way to make a sentence BOLD.
25+
A sentence in bold</strong></p>
26+
27+
<p><em>The new way to make a sentence ITALIC.
28+
A sentence in italic</em></p>
29+
30+
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Accusantium, nemo magni. Aspernatur explicabo sed deleniti sapiente illum iste blanditiis hic enim facere iusto. Ducimus molestias modi ullam voluptate iure sed?</p>
31+
</body>
32+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<h1>Lists</h1>
10+
<ol>
11+
<li>First List</li>
12+
<li>Second List</li>
13+
<li>Third List</li>
14+
<li>Fourth List</li>
15+
</ol>
16+
17+
<ul>
18+
<li>Bullet one</li>
19+
<li>Bullet Two</li>
20+
<li>Bullet three</li>
21+
</ul>
22+
23+
<h3>
24+
Nested Lists
25+
</h3>
26+
<ol>
27+
<li>Item one</li>
28+
<ul>
29+
<li>Material 1</li>
30+
<li>Material 2</li>
31+
</ul>
32+
<li>Item one</li>
33+
<ul>
34+
<li>Material 3</li>
35+
<li>Material 4</li>
36+
</ul>
37+
</ol>
38+
</body>
39+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<h1>Divisions and Spans</h1>
10+
<p> div and span tags actually works with
11+
css better, but are a part of html that's why
12+
they are introduced over here</p>
13+
<div class='youcangiveitanyname'>
14+
<h2>Group 1</h2>
15+
<p>I <span> want </span> to be together</p>
16+
</div>
17+
</body>
18+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<h1>Attributes</h1>
10+
<a href="new.html">Click Me</a><br>
11+
<a href="https://www.youtube.com">Youtube</a><br>
12+
<a href="https://www.facebook.com">Facebok</a>
13+
</body>
14+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Assignment</title>
7+
</head>
8+
<body>
9+
<h1>Welcome to my Website!</h1>
10+
11+
<p>I'm exited to eventually learn Django!</p>
12+
<a href="https://www.djangoproject.com">Here is a link to the official Django Website</a>
13+
<p>Here is a picture of the Python Logo:</p>
14+
<img src="https://www.python.org/static/community_logos/python-logo-master-v3-TM.png" alt="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcST10-fV8FfUbfBs8-Ajv8N8vGP9g8boufZbA&usqp=CAU">
15+
16+
<p>Here are three reasons Django is cool:</p>
17+
<ol>
18+
<li>Ridiculously Fast</li>
19+
<li>Reassuringly Secure</li>
20+
<li>Exceedingly Scalable</li>
21+
</ol>
22+
23+
<h2>Bonus: Optional Extra Credit</h6>
24+
25+
<p>Can you figure out how to make a picture a link?</p>
26+
<a href="https://www.djangoproject.com/">
27+
<img src="django.png" alt="django.png missing!">
28+
</a>
29+
</body>
30+
</html>
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Document</title>
7+
</head>
8+
<body>
9+
<h1>This is the new page</h1>
10+
<img src="django.png" alt="django.png missing!">
11+
<img src="missing.png" alt="missing.png missing!">
12+
<!--
13+
We can also add links in 'src' instead of saving images locally.
14+
Same can be done with 'alt'. -->
15+
<img src="https://static.xx.fbcdn.net/rsrc.php/v3/yi/r/OBaVg52wtTZ.png" alt="Image not found">
16+
</body>
17+
</html>

0 commit comments

Comments
 (0)