Skip to content

Commit

Permalink
Rahaf-Abduallah-Khadija-class1 (#41)
Browse files Browse the repository at this point in the history
* first pull request

* Rahaf's pseudo code

* 4 HTML Practice

* deleting extra data
  • Loading branch information
Rofy87 authored Apr 13, 2021
1 parent 4768ad5 commit 8c17f0a
Show file tree
Hide file tree
Showing 4 changed files with 353 additions and 0 deletions.
43 changes: 43 additions & 0 deletions class-1/Rahaf-Abduallah-Khadija/HTML-Practice-1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<title>About me</title>
</head>
<body>
<h1>ABOUT ME</h1>

<i>I love photography</i>

<p>
We have created a fictional "personal" website/blog, and our fictional
character is a hobby photographer. Lorem ipsum dolor sit amet, consectetur
adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore
magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa
qui officia deserunt mollit anim id est laborum consectetur adipiscing
elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat.
</p>

<p>Im really good at:</p>
<ul>
<li>Photography</li>
<li>Web Design</li>
<li>Photoshop</li>
</ul>

<h2>MY WORK</h2>
<img
src="https://www.w3schools.com/w3images/p2.jpg"
alt="Image of my work"
/>

<h2>Where I Work</h2>
<b>Chicago, US</b>
<b> Phone: +00 151515</b>
<b> Email: [email protected]</b>
</body>
</html>
56 changes: 56 additions & 0 deletions class-1/Rahaf-Abduallah-Khadija/HTML-Practice-2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<!DOCTYPE html>
<html>
<head>
<title>About me</title>
</head>
<body>
<!-- This looks like a header -->
<header>
<h1>Who am I ?</h1>
</header>

<!-- This looks like normal sentences -->
<p>I am a software engineer. My favorites drinks are :</p>

<!-- This looks like a list -->
<ul>
<li>Coffe</li>
<li>Tea</li>
<li>Pepsi</li>
</ul>
<!-- This looks like a list of instructions or events -->
<p>My daily routin is:</p>
<ol>
<li>I wake up at 7:00 Am.</li>
<li>I go to work at 8:00.</li>
<li>I start working from 8:00 to 1:00 PM</li>
<li>I take my breake for an hour.</li>
<li>I go back at 2:00 to finish working, and I leave at 4:15.</li>
</ol>

<!-- This is like a sentence but opening the image in amother tap is annoying -->
<img
alt="I love motorcycle here is a picture of a cool picke"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Norton_Motorcycle.jpg/1024px-Norton_Motorcycle.jpg"
/>

<!-- Would ove to clikc on the work link and go to the page -->
<p>I also have a github account here is the link</p>
<a href="https://github.com/MuhannedNoman">click here</a>
<!-- This looks like a mess wish there was a wya to display this like a real code -->
<p>The last code I wrote today was :</p>
<pre>
<code>
public void requestAccess(){ // Here,
thisActivity is the current activity if
(ContextCompat.checkSelfPermission(MainActivity.this,
Manifest.permission.READ_EXTERNAL_STORAGE) !=
PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(MainActivity.this, new
String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, 1); // Permission is
not granted } else { showFilePicker(); // Permission has already been
granted } }
</code>
</pre>
</body>
</html>
144 changes: 144 additions & 0 deletions class-1/Rahaf-Abduallah-Khadija/HTML-Practice-3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
<!DOCTYPE html>
<html>
<header>
<title>About me</title>
</header>
<body>
<header>
<nav>
<ul>
<li>Home</li>
<li>About me</li>
<li>My work</li>
<li>Contact</li>
</ul>
</nav>
</header>
<main>
<article>
<h1>Hi there</h1>
<h2>Welcome to my website</h2>

<em>I love photography</em>

<p>
We have created a fictional "personal" website/blog, and our fictional
character is a hobby photographer. Lorem ipsum dolor sit amet,
consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum
dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est
laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat.
</p>
</article>

<section>
<h2>MY WORK</h2>
<figure>
<img
src="https://www.w3schools.com/w3images/p2.jpg"
alt="Image of my work"
/>
<figcaption>Image of my work</figcaption>
</figure>
<p>A picture of some coffee beans</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus
tortor augue, gravida ac commodo sit amet, mattis vitae purus. Nunc ac
aliquam erat. Quisque placerat nec ligula id maximus. Quisque at felis
interdum, bibendum nisi in, iaculis quam. Mauris porta, dui vehicula
placerat aliquam, nisi eros placerat mauris, a congue tortor enim quis
mi. Quisque eget nulla vel magna vestibulum fermentum at vitae arcu.
Morbi ut gravida nibh. Maecenas aliquet massa a consequat pulvinar.
Cras egestas scelerisque sollicitudin.
</p>

<h2>MY WORK</h2>
<figure>
<img
src="https://www.w3schools.com/w3images/p2.jpg"
alt="Image of my work"
/>
<figcaption>Image of my work</figcaption>
</figure>
<p>A picture of some coffee beans</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus
tortor augue, gravida ac commodo sit amet, mattis vitae purus. Nunc ac
aliquam erat. Quisque placerat nec ligula id maximus. Quisque at felis
interdum, bibendum nisi in, iaculis quam. Mauris porta, dui vehicula
placerat aliquam, nisi eros placerat mauris, a congue tortor enim quis
mi. Quisque eget nulla vel magna vestibulum fermentum at vitae arcu.
Morbi ut gravida nibh. Maecenas aliquet massa a consequat pulvinar.
Cras egestas scelerisque sollicitudin.
</p>

<h2>MY WORK</h2>
<figure>
<img
src="https://www.w3schools.com/w3images/p2.jpg"
alt="Image of my work"
/>
<figcaption>Image of my work</figcaption>
</figure>
<p>A picture of some coffee beans</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus
tortor augue, gravida ac commodo sit amet, mattis vitae purus. Nunc ac
aliquam erat. Quisque placerat nec ligula id maximus. Quisque at felis
interdum, bibendum nisi in, iaculis quam. Mauris porta, dui vehicula
placerat aliquam, nisi eros placerat mauris, a congue tortor enim quis
mi. Quisque eget nulla vel magna vestibulum fermentum at vitae arcu.
Morbi ut gravida nibh. Maecenas aliquet massa a consequat pulvinar.
Cras egestas scelerisque sollicitudin.
</p>

<h2>MY WORK</h2>
<figure>
<img
src="https://www.w3schools.com/w3images/p2.jpg"
alt="Image of my work"
/>
<figcaption>Image of my work</figcaption>
</figure>
<p>A picture of some coffee beans</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus
tortor augue, gravida ac commodo sit amet, mattis vitae purus. Nunc ac
aliquam erat. Quisque placerat nec ligula id maximus. Quisque at felis
interdum, bibendum nisi in, iaculis quam. Mauris porta, dui vehicula
placerat aliquam, nisi eros placerat mauris, a congue tortor enim quis
mi. Quisque eget nulla vel magna vestibulum fermentum at vitae arcu.
Morbi ut gravida nibh. Maecenas aliquet massa a consequat pulvinar.
Cras egestas scelerisque sollicitudin.
</p>
</section>
<section>
<h2>Where I Work</h2>
<b>Chicago, US</b>
<b> Phone: +00 151515</b>
<b> Email: [email protected]</b>

<form>
<label> Email</label>
<input type="Email" placeholder="email" />
<label> Message</label>
<input type="textarea" placeholder="Message" />
</form>
</section>
</main>
<footer>
<ul>
<li>Other links</li>
<li>Other links</li>
<li>Other links</li>
<li>Other links</li>
</ul>
</footer>
</body>
</html>
110 changes: 110 additions & 0 deletions class-1/Rahaf-Abduallah-Khadija/HTML-Practice-4.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<p><a href="#">Jump to Chapter 20</a></p>
<p><a href="#">Jump to Chapter 5</a></p>

---------------------------------------

<h2>Chapter 1</h2>
<!-- This should start at 30 and increase by 10, while never going below zero -->
<form>
Quantity:
<input type="number" min="0" step="10" value="30" />
</form>

<h2>Chapter 2</h2>
<p class="tooltip">This chapter explains ba bla bla</p>

<h2>Chapter 3</h2>
<!-- The word explain should be small -->
<p>This chapter <small>explains</small> ba bla bla</p>

<h2>Chapter 4</h2>
<!-- The word chapter should be deleted -->
<p>This <del>chapter</del> explains ba bla bla</p>

<h2>Chapter 5</h2>
<!-- video should have it's full aspects width and height. starts at 5 second. allow fullscreen -->
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/D_VvcNBGy78?start=05"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>

<h2>Chapter 6</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 7</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 8</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 9</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 10</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 11</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 12</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 13</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 14</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 15</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 16</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 17</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 18</h2>
<!-- Those two should br radiou buttons. with your gender selected -->
<form>
<input type="radio" /> Male
<input type="radio" checked="checked" /> Female
</form>

<h2>Chapter 19</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 20</h2>
<!-- When this is clicked an email prompet should be displayed -->
<p>
This is an email link:
<a href="mailto:[email protected]" target="_nowhere"> Send Mail</a>
</p>

<h2>Chapter 21</h2>
<p>This chapter explains ba bla bla</p>

<h2>Chapter 22</h2>
<!-- This should be a date input -->
<form>
<p>Birthday:</p>
<input type="date" />
</form>

<h2>Chapter 23</h2>
<!-- This should be a range -->
<form>
Points:
<input type="range" min="0" max="10" />
</form>
</body>
</html>

0 comments on commit 8c17f0a

Please sign in to comment.