Home
Mission
Blog
Professional Development
Launchpad
Plans
Community
Help
Drawing Shapes: Programming in Java Course Lesson 5
By Howlin' Husky Math Games
Hello and welcome!
Are you math teacher and have been thrown into teaching a computer science course? Now you have NO IDEA where to start! Have you taught computer science, but want to try something else? Math and computer science are related, but are not the same!
I have your back. I've been teaching math and computer science, including APCSP, APCSA, and Data Structures for almost two decades. I also teach an introduction course. This is part of the course I made up for my intro students. I have a BS in computer science and know what students need to know.
This is part 5 of an introductory Programming in Java course. These lessons are meant to be done over a few days; the idea is to get students doing cool stuff as fast as possible. With Java, that is NOT an easy task.
Topics:
Programming in Java 5: Drawing Shapes
Drawing Skeleton- JFrame and JPanel
Graphics class
How to draw shapes and change colors
Making custom colors
Screen Coordinate System
All lessons will come with the following:
a pdf slideshow
a pacing guide with hints for teaching the section and common student
errors
an assignment, differentiated with three different levels!
an answer key in pdf form
an answer key in .java form
Depending on your style, you could go over the slides as a group, then let students play around. Or you could just give them the slides and assignment and let them go.
Let students explore and make mistakes. Let them talk to each other and discuss their approaches. Programming takes a lot of trial and error and collaboration.
Welcome to the world of programming! It's going to be a blast!
Interested in more computer science content?? Check this out!
https://www.TeachShare.com/Product/Bundle-Learn-to-Program-Scratch-Task-Cards-LEVEL-1-3-11365530
https://www.TeachShare.com/Product/Particle-Engine-Using-ArrayLists-in-Java-9074432
Interested in more games?? Check it!
https://www.TeachShare.com/Product/Anns-Adventure-DEMO-Adding-and-Subtracting-Within-100-8812762
Interested in forms to make life easier!? Got it!
Particle Engine Using ArrayLists in Java
By Howlin' Husky Math Games
A particle engine is a group of dots that work together to display an effect on the screen. This lab features effects for rain, fireworks, bubbles, and falling sand.
Particle Engine Using ArrayLists in Java is designed to be an extension lab for ArrayLists (Unit 7) in AP Computer Science. This lab can be used for this purpose or it can be used for an activity for after the AP exam.
- Use ArrayList to create a particle engine that can make the following effects:
Rainfall
Fireworks
Bubbles
Sand Falling (and piling up)
- Full student manual allows activity to be student or teacher run.
- Fully coded answer key provided.
- Skeleton code can be given to students to make coding the environment easier.
If you need help with anything I have provided please feel free to contact me! I'd be happy to help!!
Introduction to Adobe Photoshop (Basics) | Distance Learning
By Innovations in Technology
Introduction to Adobe Photoshop gives students a step-by-step tutorial to learn the beginning commands of Adobe Photoshop. After following the instruction (screen shots are included), students combine their “before” and “after” pictures into a simple PowerPoint (or Google Slides) to make grading easy. Finally, students complete a short creative activity to demonstrate their understanding of their learning. Additional links to other tutorials are also included in the lesson to assist learners, as needed. Instructions are for the paid PC version of Adobe Photoshop CC (2014 or 15), but are easily modifiable for Apple/MAC computers. This lesson was created for 8th grade students but is appropriate for any age group just starting out with Adobe Photoshop.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Files Included with this Lesson
• Teacher Notes and Resources
• Adobe Photoshop Step-by-Step Tutorial and Mini Lessons,
including rubric
• Sample Completed Project (as .pdf)
Related Products
⭐ Adobe Photoshop "i Am" Silhouette
⭐ Basic Photo Editing in Adobe Photoshop
⭐ Creating an Animated Gif in Adobe Photoshop
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Follow us on Pinterest
Conditional Logic -if Statements: Programming in Java Course Lesson 6
By Howlin' Husky Math Games
Hello and welcome!
Are you math teacher and have been thrown into teaching a computer science course? Now you have NO IDEA where to start! Have you taught computer science, but want to try something else? Math and computer science are related, but are not the same!
I have your back. I've been teaching math and computer science, including APCSP, APCSA, and Data Structures for almost two decades. I also teach an introduction course. This is part of the course I made up for my intro students. I have a BS in computer science and know what students need to know.
This is part 6 of an introductory Programming in Java course. These lessons are meant to be done over a few days; the idea is to get students doing cool stuff as fast as possible. With Java, that is NOT an easy task.
Topics:
Programming in Java 6: Conditional Logic- if Statements
How to make and use an if
the else statements
the else if statement
nested if and compound logic
pseudocode and logic errors
All lessons will come with the following:
a pdf slideshow
a pacing guide with hints for teaching the section and common student
errors
an assignment, differentiated with three different levels!
an answer key in pdf form
an answer key in .java form
Depending on your style, you could go over the slides as a group, then let students play around. Or you could just give them the slides and assignment and let them go.
Let students explore and make mistakes. Let them talk to each other and discuss their approaches. Programming takes a lot of trial and error and collaboration.
Welcome to the world of programming! It's going to be a blast!
Interested in more computer science content?? Check this out!
https://www.TeachShare.com/Product/Bundle-Learn-to-Program-Scratch-Task-Cards-LEVEL-1-3-11365530
https://www.TeachShare.com/Product/Particle-Engine-Using-ArrayLists-in-Java-9074432
Interested in more games?? Check it!
https://www.TeachShare.com/Product/Anns-Adventure-DEMO-Adding-and-Subtracting-Within-100-8812762
Interested in forms to make life easier!? Got it!
How'd You Make That!? Programming in Java Lab: Pong!
By Howlin' Husky Math Games
Looking for a fun and engaging way to teach Java programming? Look no further than "How'd You Make That!? Java Programming Labs: Pong! Designed with increasing levels of difficulty, this lab helps students develop their coding skills step-by-step. Students will create the classic game of Pong!
In Bounce Beginner, students will use the code provided to create the game. Much of the background coding has been done for them so they will be concentrating on creating and using objects and designing the game. To complete this level students need to understand how to use methods and create objects. If you are following my year long curriculum, students should be about to Java 7: Looping Statements.
At the Paddle Pupil level, students will fill in some provided classes and create their own versions. Some of the lowest level code has been done for them, but they will write most of the game with a skeleton. To complete this level students need to understand anything from the Bounce Beginner level in addition to how to create objects and pass parameters. If you are following my year long curriculum, students should be about to Java 10: Advanced Techniques
At the Court Champion level, students will create the game from scratch. This requires them to understand Timers, collision, and how use graphics. Students will be given general direction, but creating the game will mostly be up to them. To complete this level students need to understand anything from the Paddle Pupil level in addition to Timers, collision, and basic use of the extends keyword. If you are following my year long curriculum, students should be about to Java 18: Collision Detection
find it here: https://www.TeachShare.com/Product/Programming-in-Java-18-Collision-Detection-12050305?st=fdb66e1be81e92fbf4d0b050bba21a23
This lab is fully equipped with an answer key, a basic lab manual for teachers, and a student guide that walks students through each level. Perfect for high school computer science classes or AP Computer Science A, this resource is ideal for both in-class instruction and independent learning.
Whether you’re teaching Java basics, game development, or want to reinforce key concepts like classes, objects, and inheritance, this lab offers everything you need for an engaging and productive lesson.
Learning Adobe Illustrator | Distance Learning
By Innovations in Technology
The “Learning Adobe Illustrator” unit focuses on teaching novice students the basics of Adobe Illustrator through independent, project based learning. Students utilize a variety of resources to assist them in their hands-on learning of the program at their own pace. The “About Me” project allows students individual expression and creativity while learning the basic tools in the program. It also includes links to tutorials they can use as they need to complete the lesson. Next, students do three short “practice” lessons that allow them to expand their skills. Finally, they create their own CD cover, utilizing a template for correct size.
Files included with this lesson:
• Teacher Notes and Resources (includes extension activity ideas)
• About Me Project Expectations and Rubric
• Adobe Illustrator Practice Mini Lessons (3 lessons)
• Create a CD Cover Project Expectations and Rubric
• CD Cover Template
I've used this successfully with 7th and 8th graders who loved the creativity it involved! I hope your students will enjoy it too!
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Create Your Own Interactive Story Creative Writing & Technology Animation
By Innovations in Technology
Reignite your students interest in reading and writing as they create a story with multiple paths and possible endings in MS Word, and then animate it using MS PowerPoint. Students get a chance to read each other’s work as they peer review it too.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
This unit includes:
1. Resources for teachers and students
2. Expectations for Story Draft
3. Story Tips (Student handout)
4. Story creation template (flowchart)
5. Peer Review Expectations
6. Peer Review Critique Form
7. Expectations for Story Revision
8. Expectations for PowerPoint creation
9. PowerPoint template with hyperlinks
This project based learning assignment gives students a fun way to express themselves using both English/Language arts skills along with technology.
This interactive story project is usually one of the lessons my students mention in their end-of-year reflection as one of their favorites. I hope your students enjoy it too!
St. Patrick's Day Pixel Art Microsoft Excel or Google Sheets | Distance Learning
By Innovations in Technology
Need a fun way to introduce Microsoft Excel to upper elementary or middle school students? This great lesson incorporates St. Patrick's Day themed art as students learn the basics of Microsoft Excel or Google Sheets. First, they'll create a quick pixel art from a given example and then they'll create their own! These are also fun lessons to use if you just need something for a one day lesson.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Files Included
• Teacher & Student Resources
• Introduction to Pixel Art Lesson (Microsoft Excel project) with tutorial
• Introduction to Pixel Art Lesson (Google Sheets project) with tutorial
• Legends and Sample Pictures for 5 Additional Pictures
• Full Excel (2016) editable files for all pixel art projects (note: these can be opened in Google Sheets too)
Includes instructions and samples for these pixel art designs:
Examples:
Example 1: Shamrock
Example 2: Leprechaun Hat
Additional Pictures:
1 – Pot of Gold with Rainbow
2 – Leprechaun with Pot of Gold
3 – Easy Shamrock
4 - Horseshoe
5 – Gold Coin
I've used this with 7th and 8th graders who used their free time to create even more art! I hope your students have as much fun as mine did learning Excel!
Related Products
⭐ Excelling with Excel - Beginner Activities
⭐ Excelling with Excel - Intermediate Tutorial & Activities
⭐ What Will My Car Cost? - A Project in Microsoft Excel
⭐ ReDesign Your Bedroom using Microsoft Excel
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Fall Pixel Art in MS Excel or Google Sheets
By Innovations in Technology
Need a fun way to introduce Microsoft Excel or Google Sheets to upper elementary or middle school students? This great lesson lets students learn the basics of Microsoft Excel (or Google Sheets) as they create pixel art using the program. First, they'll create a quick pixel art from a given example and then they'll create their own! These are also fun lessons to use if you just need something for a one day lesson.
I've used this with 7th and 8th graders who used their free time to create even more art! I hope your students have as much fun as mine did learning Excel or Google Sheets!
Materials Required
· Computers with Internet access for each student (or pair of students)
· Microsoft Excel or Google Sheets
Files Included
· Teacher & Student Resources
· Introduction to Pixel Art Lesson (Microsoft Excel project) with tutorial
· Introduction to Pixel Art Lesson (Google Sheets project) with tutorial
· Legends and Sample Pictures for 2 Example and 7 Additional Pictures including:
o Example 1: Rake
o Example 2: Acorn
o Easy Picture 1: Smore
o Easy Picture 2: Sweater
o Picture 1: Bonfire
o Picture 2: Hot Chocolate
o Picture 3: Fall Leaf
o Picture 4: Fall Sunset
o Picture 5: Fall Trees
· Full Excel editable files for all pixel art projects (note: these can be opened in Google Sheets too)
Approximate Lesson Duration:
· 1-2 (50 minute) class period(s) (but your students will probably want to work on it longer!)
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Follow us on Pinterest
Sports Themed Pixel Art in MS Excel or Google Sheets | Distance Learning
By Innovations in Technology
Need a fun way to introduce Microsoft Excel or Google Sheets to upper elementary or middle school students? This great lesson lets students learn the basics of Microsoft Excel (or Google Sheets) as they create pixel art using the program. First, they'll create a quick pixel art from a given example and then they'll create their own! These are also fun lessons to use if you just need something for a one day lesson.
This sports themed collection of pixel art includes these pictures:
Bowling Pin
Golf Course
Basketball
Helmet
Ice Skate
Golf Bag and Clubs
Skateboard
Football
Trophy
Baseball and Mitt
I've used this with 7th and 8th graders who used their free time to create even more art! I hope your students have as much fun as mine did learning Excel or Google Sheets!
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Materials Required
Computers with Internet access for each student (or pair of students)
Microsoft Excel or Google Sheets
Files Included
Teacher & Student Resources
Introduction to Pixel Art Lesson (Microsoft Excel project) with tutorial
Introduction to Pixel Art Lesson (Google Sheets project) with tutorial
Legends and Sample Pictures for 8 Additional Pictures (10 total)
Full Excel (2016) editable files for all pixel art projects (note: these can be opened in Google Sheets too)
Approximate Lesson Duration:
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Follow us on Pinterest
Visit our Website
Music Themed Pixel Art in Microsoft Excel or Google Sheets | Distance Learning
By Innovations in Technology
Need a fun way to introduce Microsoft Excel or Google Sheets to upper elementary or middle school students? This great lesson incorporates music themed art as students learn the basics of Microsoft Excel or Google Sheets. First, they'll create a quick pixel art from a given example and then they'll create their own! These are also fun lessons to use if you just need something for a one day lesson.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Files Included
• Teacher & Student Resources
• Introduction to Pixel Art Lesson (Microsoft Excel project) with tutorial
• Introduction to Pixel Art Lesson (Google Sheets project) with tutorial
• Legends and Sample Pictures for 6 Additional Pictures
• Full Excel (2016) editable files for all pixel art projects (note: these can be opened in Google Sheets too)
Contains instructions and samples for these pixel art designs:
Samples
Sample 1: Treble Clef
Sample 2: Headphones
Additional Pictures
Picture 1: Bass Clef
Picture 2: Harp
Picture 3: Keyboard
Picture 4: Snare Drum
Picture 5: Music Notes
Picture 6: Guitar
I've used this with 7th and 8th graders who used their free time to create even more art! I hope your students have as much fun as mine did learning Excel!
Related Products
⭐ Excelling with Excel - Beginner Activities
⭐ Excelling with Excel - Intermediate Tutorial & Activities
⭐ What Will My Car Cost? - A Project in Microsoft Excel
⭐ ReDesign Your Bedroom using Microsoft Excel
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Spring Pixel Art in Microsoft Excel or Google Sheets | Distance Learning
By Innovations in Technology
Need a fun way to introduce Microsoft Excel or Google Sheets to upper elementary or middle school students? This great lesson incorporates Spring themed art as students learn the basics of Microsoft Excel or Google Sheets. First, they'll create a quick pixel art from a given example and then they'll create their own! These are also fun lessons to use if you just need something for a one day lesson.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Files Included
• Teacher & Student Resources
• Introduction to Pixel Art Lesson (Microsoft Excel project) with tutorial
• Introduction to Pixel Art Lesson (Google Sheets project) with tutorial
• Legends and Sample Pictures for 6 Additional Pictures
• Full Excel (2016) editable files for all pixel art projects (note: these can be opened in Google Sheets too)
Includes instructions and samples for these pixel art designs:
* Daffodil
* Purple Flower
* Blue Spring Flowers
* Easter Bunny
* Easter Basket
* Pink Flower
I've used this with 7th and 8th graders who used their free time to create even more art! I hope your students have as much fun as mine did learning Excel!
Related Products
⭐ Excelling with Excel - Beginner Activities
⭐ Excelling with Excel - Intermediate Tutorial & Activities
⭐ What Will My Car Cost? - A Project in Microsoft Excel
⭐ ReDesign Your Bedroom using Microsoft Excel
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Summer Pixel Art in Microsoft Excel or Google Sheets | Distance Learning
By Innovations in Technology
Need a fun way to introduce Microsoft Excel or Google Sheets to upper elementary or middle school students? This great lesson incorporates Summer themed art as students learn the basics of Microsoft Excel or Google Sheets. First, they'll create a quick pixel art from a given example and then they'll create their own! These are also fun lessons to use if you just need something for a one day lesson.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Files Included
• Teacher & Student Resources
• Introduction to Pixel Art Lesson (Microsoft Excel project) with tutorial
• Introduction to Pixel Art Lesson (Google Sheets project) with tutorial
• Legends and Sample Pictures for 6 Additional Pictures
• Full Excel (2016) editable files for all pixel art projects (note: these can be opened in Google Sheets too)
Includes instructions and samples for these pixel art designs:
Samples
1 – Watermelon
2 – Beach Umbrella
Easy
1 – Sunglasses
2 – Pail and Shovel
Additional Pictures
1 – Beach Ball
2 – Sandals
3 – Ice Cream Bar
4 – Ice Cream Cone
5 – Sandcastle
6 – Summer Sun
I've used this with 7th and 8th graders who used their free time to create even more art! I hope your students have as much fun as mine did learning Excel!
Related Products
⭐ Excelling with Excel - Beginner Activities
⭐ Excelling with Excel - Intermediate Tutorial & Activities
⭐ What Will My Car Cost? - A Project in Microsoft Excel
⭐ ReDesign Your Bedroom using Microsoft Excel
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Mobile Apps - Research and Design Your Own App | Distance Learning
By Innovations in Technology
Students love their phones and all the apps that are available for them! This lesson lets students research some of the most popular apps and learn more about the software engineers who created them, and then create an app of their own. A Microsoft PowerPoint presentation starts the lesson as students learn about how apps are designed. Next, students work individually, with a partner, or in small groups to research an assigned app and create a presentation in their choice of software (suggestions and web tutorials are included). Next, students present their findings to the class. Finally, students work together to create their own app, using App Inventor (free software from MIT). Links to teacher instructions for App Inventor set up (provided by MIT) are included in the provided teacher resources below. All files are fully editable, allowing the teacher to customize the lessons. Additional resources and extension lesson ideas include free sites for students to create their own mobile app.
Perfect for a technology, engineering, or business class, this project was created for grades 7-8 but could easily be adapted for older students.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Files Included with this Lesson
• Teacher & Student Notes and Resources
• Introduction to App Design & Creation PowerPoint Presentation (fully editable)
• App List for Assignment (fully editable in MS Word)
• Popular Apps and the Software Engineers(s) Who Designed Them – Individual Project Instructions, Expectations and Grading Rubric (fully editable in MS Word)
• Popular Apps and the Software Engineers(s) Who Designed Them – Partner/Team Project Instructions, Expectations and Grading Rubric (fully editable in MS Word)
• Project Sign Up Sheet – 3 versions: individual, partner and team (fully editable in MS Word)
• Creating an App in AppInventor – Project Expectations and Grading Rubric (fully editable in MS Word)
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Follow us on Pinterest
Visit our Website
Technology Theme Pixel Art Microsoft Excel or Google Sheets | Distance Learning
By Innovations in Technology
Need a fun way to introduce Microsoft Excel or Google Sheets to upper elementary or middle school students? This great lesson incorporates technology themed art as students learn the basics of Microsoft Excel or Google Sheets. First, they'll create a quick pixel art from a given example and then they'll create their own! These are also fun lessons to use if you just need something for a one day lesson.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Included in this download:
• Teacher & Student Resources
• Introduction to Pixel Art Lesson (Microsoft Excel project) with tutorial
• Introduction to Pixel Art Lesson (Google Sheets project) with tutorial
• Legends and Sample Pictures for 6 Additional Pictures
• Full Excel (2016) editable files for all pixel art projects (note: these can be opened in Google Sheets too)
Includes instructions and samples for these pixel art designs:
Sample Pictures
- Mouse
- Hourglass
Additional Pictures
- Floppy Disk
- Cell Phone
- CD
- Computer
- Camera
- iPad
I've used this with 7th and 8th graders who used their free time to create even more art! I hope your students have as much fun as mine did learning Excel!
Related Products
⭐ Excelling with Excel - Beginner Activities
⭐ Excelling with Excel - Intermediate Tutorial & Activities
⭐ What Will My Car Cost? - A Project in Microsoft Excel
⭐ ReDesign Your Bedroom using Microsoft Excel
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Creating an Animated Gif in Adobe Photoshop | Distance Learning
By Innovations in Technology
Creating an Animated Gif in Adobe Photoshop is a project for students with basic knowledge of some of the common Adobe Photoshop commands. The project includes step-by-step instructions to guide students through the project of turning photos or clip art into an animated Gif. A sample project is provided for reference in both .psd (Photoshop format) and as a finished .gif.
This is a fun activity that shows students some additional features in Adobe Photoshop while improving their skills with basic commands. Created for an 8th grade Information Technology class, this project would be suitable for students in grades 6-12.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Files Included with this Lesson
• Teacher Notes and Resources
• Adobe Photoshop Quick Start Tutorial & Instructions
• Adobe Photoshop Animated Gif Project Expectations & Rubric
• Sample Project (Photoshop files and finished Gif included)
Related Products
⭐ Adobe Photoshop "i Am" Silhouette
⭐ Basic Photo Editing in Adobe Photoshop
⭐ Introduction to Adobe Photoshop (Basics)
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Back to School Pixel Art in Microsoft Excel or Google Sheets | Distance Learning
By Innovations in Technology
Need a fun way to introduce Microsoft Excel or Google Sheets to upper elementary or middle school students? This great lesson incorporates back to school themed art as students learn the basics of Microsoft Excel or Google Sheets. First, they'll create a quick pixel art from a given example and then they'll create their own! These are also fun lessons to use if you just need something for a one day lesson. Perfect for the beginning of the school year too.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Files Included
• Teacher & Student Resources
• Introduction to Pixel Art Lesson (Microsoft Excel project) with tutorial
• Introduction to Pixel Art Lesson (Google Sheets project) with tutorial
• Legends and Sample Pictures for 8 Additional Pictures
• Full Excel (2016) editable files for all pixel art projects (note: these can be opened in Google Sheets too)
Contains instructions and samples for these pixel art designs:
Samples
1 - Box of Crayons
2 – Calculator
Easy
1 – Apple
2 – Lunch Bag
Additional Pictures
1 – School Bus
2 – Pencil
3 – Combination Lock
4 - Scissors
5 – Stapler
6 – Composition Book
I've used this with 7th and 8th graders who used their free time to create even more art! I hope your students have as much fun as mine did learning Excel!
Related Products
⭐ Excelling with Excel - Beginner Activities
⭐ Excelling with Excel - Intermediate Tutorial & Activities
⭐ What Will My Car Cost? - A Project in Microsoft Excel
⭐ ReDesign Your Bedroom using Microsoft Excel
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Winter Pixel Art in Microsoft Excel or Google Sheets | Distance Learning
By Innovations in Technology
Need a fun way to introduce Microsoft Excel or Google Sheets to upper elementary or middle school students? This great lesson lets students learn the basics of Microsoft Excel (or Google Sheets) as they create pixel art using the program. First, they'll create a quick pixel art from a given example and then they'll create their own! These are also fun lessons to use if you just need something for a one day lesson.
I've used this with 7th and 8th graders who used their free time to create even more art! I hope your students have as much fun as mine did learning Excel or Google Sheets!
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Files Included
• Teacher & Student Resources
• Introduction to Pixel Art Lesson (Microsoft Excel project) with tutorial
• Introduction to Pixel Art Lesson (Google Sheets project) with tutorial
• Legends and Sample Pictures for 6 Additional Pictures
• Full Excel (2016) editable files for all pixel art projects (note: these can be opened in Google Sheets too)
Contains instructions and samples for these pixel art designs:
Samples
1 – Winter Cap
2 – Easy Snowman
Additional Pictures
1 – Penguin
2 – Hot Chocolate
3 – Snowflakes
4 – Winter Village Scene
5 – Snowman Scene
Related Products
⭐ Excelling with Excel - Beginner Activities
⭐ Excelling with Excel - Intermediate Tutorial & Activities
⭐ What Will My Car Cost? - A Project in Microsoft Excel
⭐ ReDesign Your Bedroom using Microsoft Excel
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Animal Pixel Art in Microsoft Excel or Google Sheets | Distance Learning
By Innovations in Technology
Need a fun way to introduce Microsoft Excel or Google Sheets to upper elementary or middle school students? This great lesson incorporates animal themed art as students learn the basics of Microsoft Excel or Google Sheets. First, they'll create a quick pixel art from a given example and then they'll create their own! These are also fun lessons to use if you just need something for a one day lesson.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Files Included
• Teacher & Student Resources
• Introduction to Pixel Art Lesson (Microsoft Excel project) with tutorial
• Introduction to Pixel Art Lesson (Google Sheets project) with tutorial
• Legends and Sample Pictures for 6 Additional Pictures
• Full Excel (2016) editable files for all pixel art projects (note: these can be opened in Google Sheets too)
Includes instructions and samples for these pixel art designs:
Samples
Sample 1: Duck
Sample 2: Pig
Additional Pictures
Picture 1: Penguin
Picture 2: Turtle
Picture 3: Dog
Picture 4: Bird
Picture 5: Fish in bowl
Picture 6: Kitten
I've used this with 7th and 8th graders who used their free time to create even more art! I hope your students have as much fun as mine did learning Excel!
Related Products
⭐ Excelling with Excel - Beginner Activities
⭐ Excelling with Excel - Intermediate Tutorial & Activities
⭐ What Will My Car Cost? - A Project in Microsoft Excel
⭐ ReDesign Your Bedroom using Microsoft Excel
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Create Infographics using Piktochart - Internet Research | Distance Learning
By Innovations in Technology
In this lesson, students learn more about what makes an effective infographic as they analyze existing infographics and then create their own. Included with the lesson is a Microsoft PowerPoint presentation for whole class instruction (editable) to learn about infographics and analyze them as a class. Infographics with discussion questions are included in the PowerPoint. Next, students choose a topic of interest, research their topic and then create an infographic using Piktochart (www.piktochart.com), a free Web 2.0 tool that does not require download. A Quick Start Guide for the program is included to help students navigate the program. Topic suggestions are included in the teacher/student resource material. These infographics look great printed and displayed in the hallways!
This lesson was designed for middle school (grades 6-8) but could be used in upper elementary grades or high school as well. It can be used for any subject that wants to incorporate technology in a lesson.
This lesson is great for distance learning/remote learning. You can upload it to your school's learning management system (Google Classroom, Edmodo, Canvas, etc.) or share with students via Google Drive.
Files included:
• Teacher & Student Resources
• Infographics Presentation (whole class with discussion questions) in MS PowerPoint (editable)
• Research worksheet (two versions – for individual or teams)
• Infographic Project: Student expectations, instructions and grading rubric
• Quick start tutorial for Piktochart
Remember to leave feedback for credits on future purchases!
**************************************************************************
Connect with us for free technology tips, resources and curriculum:
Follow our blog
Follow us on Facebook
Follow us on Pinterest
Visit our Website