Web 1
https://www.quia.com/quiz/8533532.html
12-16
Objective: Students will be able to work in Knowledge Pillars working towards scoring 90 or higher in exam mode back to back (six times - minimum). Let me know once you have completed this. Remember to study for your Semester Exam as well!
Flash-Cards on Quizlet
12-9
Objective: Students will be able to work in Knowledge Pillars working towards scoring 90 or higher in exam mode back to back (six times - minimum). Let me know once you have completed this. Remember to study for your Semester Exam as well!
Flash-Cards on Quizlet
12-2
Objective: Students will be able to work in Knowledge Pillars working towards scoring 90 or higher in exam mode back to back (three times - minimum). Let me know once you have completed this.
Flash-Cards on Quizlet
https://platform.knowledge-pillars.com
11-18
Objective: Students will be able to work in Knowledge Pillars working towards completing the lessons.
https://platform.knowledge-pillars.com
11-12
Objective: Students will be able to work in Knowledge Pillars working towards completing lessons ( ).
https://www.quia.com/quiz/8520341.html
10-21
Objective: Students will be able to modify their WP website by following the tutorial. The tutorial is a website. I will show you how to access it.
10-7
Objective: Students will be able to create fancy website buttons using PhotoShop. Create buttons for menu items such as: Home, FAQs, Contact, About Us, and Gallery. Once you have created the buttons, add them to a fresh mockup page.
9-30
Objective: Students will be able to learn how to create a website mockup using PhotoShop. Recreate the school website's home page.
9-25
Objective: Students will be able to learn how not to commit copyright infringement, and plagiarism. Write a one page paper on how to avoid committing Copyright Infringement, and Plagiarism.
Copyright infringement includes the unauthorized or unlicensed copying of a work subject to copyright. ( Tech Law Journal) Plagiarism is using someone else's work or ideas without giving proper credit.
What is Plagiarism and How Do I Avoid it?
https://www.youtube.com/watch?v=EbWKUiLjGBs
Copyright Infringement - What if Someone Infringes Your Copyright?
https://www.youtube.com/watch?v=uxdrzOz0A0A
9-24
Objective: Students will be able to learn more about WordPress by completing the assigned tasks shown below.
How To Add Navigation Menu In WordPress 2024 (Step-By-Step)
https://www.youtube.com/watch?v=AneZEWEHpuw
How To Edit Footer In Wordpress 2024
https://www.youtube.com/watch?v=T7Fa4KfRNzo
How to Add a Favicon to Your WordPress Blog
https://www.youtube.com/watch?v=13jjglEuNpA
Do Not Do This Step - It requires the paid version
How To Make An Image Slider In WordPress | Easy Tutorial (2024)
https://www.youtube.com/watch?v=76WUt9vtmMM
9-23
Objective: Students will be able to learn more about WordPress by completing the assigned worksheet.
9-17
Objective: Students will be able to gain a basic understanding of how wordpress works. https://www.youtube.com/watch?v=kYY88h5J86A
Go to https://wordpress.com/
If you have an account, log in.
If you don't have an account, create one by clicking on Get Started on the top right.
9-9-24
Objective: Students will be able to recreate the Medical Assistant Logo using the skills learned thus far in Photoshop.
Step 1 - Create a document 10 X 10 inches, 300 resolution, CMYK.
Step 2 - Lay out your design with 4 circles (Outer with stroke, inner with stroke, and the two small buttons without a stroke. Lock these layers.
Step 3 - Add the text and Arc the text using the horizontal bend (See Screenshot) - Don't use Arc Lower or Arc Upper...as it has limitations.
Step 4 - Place the Heart, the Cross, and the Medical Staff (you will have to resize these using Edit > Free Transform or CMD & T shortcut keys)
Step 5 - Double click the layer with the Medical Staff, and select a texture close to the one you see. Do the same for the two buttons.
Your logo project is now complete if you did it correctly. Remember to create new layers as you add to your logo. This will make things seem easy to you!
Basic Web 1 Quiz 9-4-24
https://www.quia.com/quiz/8505747.html
9-3-24
Objective: Students will be able to complete HTML exercises at w3schools by creating an account (see the link). Note: You will be quizzed on some of the basics shown in the handout.
Link to study guide **Only focus on the first three pages**
8-26-24
Objective: Students will be able to create Gmetrix accounts and login to access HTML and CSS exercises. Note: You will be in Gmetrix for this week! We will more than likely have access to WordPress within two weeks from today.
8-20-24
Objective: Students will be able to create a basic HTML page by using the code example as well as w3schools.
Add a background color
Add an <h2> tag
Add an unordered list
Add a photo
Add a video:
<iframe width="560" height="315" src="https://www.youtube.com/embed/jhGHXAnNNzM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
8-14-24 to 8-16-24
Objective: Students will be able to create a Snowman using graphic design tools. All students must be familiar with these tools. Your grade this week will come from submitting your Classroom Guidelines online form.
***6th Period
8-14-2024
Objective: Students will be able to practice writing HTML by setting up the file structure and placing the HTML file in the root folder, etc.
Learn by Doing
Beginning HTML
File Structure
Learning file structure is a very important aspect of learning HTML. This will focus on file structure.
I would like to explain how a website is structured in layman’s terms. A website consists of a root folder that contains files with code in them (HTML, CSS, JS, etc.) that can be linked to one another. I will further condense this explanation to ‘Code inside of Files inside of Folders’.
We will now create a root folder for our website. Follow the steps below exactly.
1) Right click (on the desktop) > New Folder
2) Rename your folder to: Root_Folder (FYI, you will have to double click on the name of the folder to rename it).
3) Open TextEdit or any text file editor > Create a new file and save it as: index.html
4) Type the code shown below in your index.html file that you just created.
How do I write HTML on Mac?
Create an HTML file
In the TextEdit app on your Mac, choose File > New, then choose Format > Make Plain Text.
Enter the HTML code.
Choose File > Save, type a name followed by the extension . html (for example, enter index. html), then click Save.
When prompted about the extension to use, click “Use . html.”
HTML headings are defined with the <h1> to <h6> tags:
Example
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
HTML Paragraphs
HTML paragraphs are defined with the <p> tag:
Example
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
HTML Links
HTML links are defined with the <a> tag:
Example
<a href="http://www.w3schools.com">This is a link</a>
***Google how to add a header, a footer and some menu links.***
From w3schools - Example:
A header for an <article>:
<article>
<header>
<h1>A heading here</h1>
<p>Posted by John Doe</p>
<p>Some additional information here</p>
</header>
<p>Lorem Ipsum dolor set amet....</p>
</article>