8:15
|
13:48
|
Expanding Website Text Box Dreamweaver Tutorial - English
Learn how to create a web text box that get bigger or smaller depending on how much text you place in it! Also make a header that spans the users screen no matter what size!
Learn how to create a web text box that get bigger or smaller depending on how much text you place in it! Also make a header that spans the users screen no matter what size!
33:07
|
Web Text Box and HTML Photoshop Tutorial - English
In this video we will start with nothing more than a blank .psd and we will build a nice web text box and slice it and then we will save it for the web and save an HTML file as well as our slices
In this video we will start with nothing more than a blank .psd and we will build a nice web text box and slice it and then we will save it for the web and save an HTML file as well as our slices
26:18
|
Web 2.0 Style Box Icon Adobe Illustrator Tutorial - English
In this Illustrator Tutorial we will be using Illustrator CS4 to draw this nice little 3D box which can easily be edited for use in tons of different ways! The beauty of this box is that it is all...
In this Illustrator Tutorial we will be using Illustrator CS4 to draw this nice little 3D box which can easily be edited for use in tons of different ways! The beauty of this box is that it is all vector and very easy to use in a wide number of different editing programs! We will take a look at mapping artwork, using the 3D effect, effects in general, creating a reflection, and a bit of masking as well. A bunch of cool stuff to learn as we build a nice little box!
More...
Description:
In this Illustrator Tutorial we will be using Illustrator CS4 to draw this nice little 3D box which can easily be edited for use in tons of different ways! The beauty of this box is that it is all vector and very easy to use in a wide number of different editing programs! We will take a look at mapping artwork, using the 3D effect, effects in general, creating a reflection, and a bit of masking as well. A bunch of cool stuff to learn as we build a nice little box!
30:01
|
CSS Build a Simple Web Page in Dreamweaver - English
In this video we will start with a folder of images and in about 30 minutes construct a very simple 2 column layout using CSS to style our page! We will learn all about using divs, creating CSS...
In this video we will start with a folder of images and in about 30 minutes construct a very simple 2 column layout using CSS to style our page! We will learn all about using divs, creating CSS rules, targeting divs, creating a background, and so much more! Start learning to harness the raw power of Cascading Style Sheets to create, layout, and style your web pages today!
More...
Description:
In this video we will start with a folder of images and in about 30 minutes construct a very simple 2 column layout using CSS to style our page! We will learn all about using divs, creating CSS rules, targeting divs, creating a background, and so much more! Start learning to harness the raw power of Cascading Style Sheets to create, layout, and style your web pages today!
33:18
|
Pagination Tutorial for PHP MySQL Programmers Web Intersect Paging Database Results - English
Get the independent generic version of this tutorial in text tutorial form here: http://www.developphp.com/tutorial_read.php?tid=198
Web Intersect Source Code: http://www.webintersect.com...
Get the independent generic version of this tutorial in text tutorial form here: http://www.developphp.com/tutorial_read.php?tid=198
Web Intersect Source Code: http://www.webintersect.com
Adam teaches how to throw down on custom PHP MySQL Pagination programming.
More...
Description:
Get the independent generic version of this tutorial in text tutorial form here: http://www.developphp.com/tutorial_read.php?tid=198
Web Intersect Source Code: http://www.webintersect.com
Adam teaches how to throw down on custom PHP MySQL Pagination programming.
10:46
|
Dreamweaver CS4 Pagination Tutorial Paging Database Results - English
More dynamic programming lessons at http://www.developphp.com
Learn how to very easily render paged result sets using Dreamweaver CS4 and it's built in database interactions. No need to have...
More dynamic programming lessons at http://www.developphp.com
Learn how to very easily render paged result sets using Dreamweaver CS4 and it's built in database interactions. No need to have programming knowledge to do this. No PHP or MySQL programming knowledge needed, but it can be learned by studying and changing the code.
More...
Description:
More dynamic programming lessons at http://www.developphp.com
Learn how to very easily render paged result sets using Dreamweaver CS4 and it's built in database interactions. No need to have programming knowledge to do this. No PHP or MySQL programming knowledge needed, but it can be learned by studying and changing the code.
9:17
|
After Effects Tutorial Super Opening Title - English
This Tutorial is now a bit outdated, log on to the page listed above to see the NEW AND IMPROVED SUPER TEXT TUTORIAL... WITH HIGH RESOLUTION IMAGES!!!!
In this tutorial we will be taking a look...
This Tutorial is now a bit outdated, log on to the page listed above to see the NEW AND IMPROVED SUPER TEXT TUTORIAL... WITH HIGH RESOLUTION IMAGES!!!!
In this tutorial we will be taking a look at how to create a title effect similar to what you have seen in many, many, MANY superhero and science fiction movies. Of course, the effect was popularized by a certain SUPER MAN who shall remain nameless. Enjoy!
More...
Description:
This Tutorial is now a bit outdated, log on to the page listed above to see the NEW AND IMPROVED SUPER TEXT TUTORIAL... WITH HIGH RESOLUTION IMAGES!!!!
In this tutorial we will be taking a look at how to create a title effect similar to what you have seen in many, many, MANY superhero and science fiction movies. Of course, the effect was popularized by a certain SUPER MAN who shall remain nameless. Enjoy!
11:42
|
How to Build a Javascript WYSIWYG Rich Text HTML Editor Textarea Replacement for Web Site Part 1
earn how to build a Javascript WYSIWYG Rich Text HTML Editor Textarea Replacement for your PHP and MySQL driven applications. In this first video we will construct our HTML and CSS based form that...
earn how to build a Javascript WYSIWYG Rich Text HTML Editor Textarea Replacement for your PHP and MySQL driven applications. In this first video we will construct our HTML and CSS based form that is ready to send data to a PHP parsing file waiting on our server. We will hide (but keep) our normal textarea element and replace it with an iFrame element. When the page loads into the browser we will use Javascript laid out in the next video to turn the designMode "on" for that iFrame, so people can type into it and compose things.
More...
Description:
earn how to build a Javascript WYSIWYG Rich Text HTML Editor Textarea Replacement for your PHP and MySQL driven applications. In this first video we will construct our HTML and CSS based form that is ready to send data to a PHP parsing file waiting on our server. We will hide (but keep) our normal textarea element and replace it with an iFrame element. When the page loads into the browser we will use Javascript laid out in the next video to turn the designMode "on" for that iFrame, so people can type into it and compose things.
12:17
|
How to Build a Javascript WYSIWYG Rich Text HTML Editor Textarea Replacement for Web Site Part 2
earn how to build a Javascript WYSIWYG Rich Text HTML Editor Textarea Replacement for your PHP and MySQL driven applications. In this second video we will script our wysiwyg.js file and code out...
earn how to build a Javascript WYSIWYG Rich Text HTML Editor Textarea Replacement for your PHP and MySQL driven applications. In this second video we will script our wysiwyg.js file and code out all of the functions that our HTML form is ready to call. We make use of the execCommand() method in Javascript and all of its Command Identifiers to apply specific formatting we desire to our WYSIWYG editor. Our form is submit using Javascript so we can transfer the data frome our iframe into our textarea for the normal form action to work. The form can also be submit using Ajax if you prefer, then there would be no need to transfer data from the iframe into the textarea. In part 3 we discuss the PHP and MySQL side of things, security, and filtering.
More...
Description:
earn how to build a Javascript WYSIWYG Rich Text HTML Editor Textarea Replacement for your PHP and MySQL driven applications. In this second video we will script our wysiwyg.js file and code out all of the functions that our HTML form is ready to call. We make use of the execCommand() method in Javascript and all of its Command Identifiers to apply specific formatting we desire to our WYSIWYG editor. Our form is submit using Javascript so we can transfer the data frome our iframe into our textarea for the normal form action to work. The form can also be submit using Ajax if you prefer, then there would be no need to transfer data from the iframe into the textarea. In part 3 we discuss the PHP and MySQL side of things, security, and filtering.
26:15
|
Microsoft PowerPoint Tutorial - Beginners Level 1 - English
10 Powerful Point Tips: https://www.youtube.com/watch?v=jgvlzAbcJ6A
Stay up to date, subscribe to Teacher\'s Tech: http://bit.ly/Subscribe_TeachersTech
Are you new to Microsoft...
10 Powerful Point Tips: https://www.youtube.com/watch?v=jgvlzAbcJ6A
Stay up to date, subscribe to Teacher\'s Tech: http://bit.ly/Subscribe_TeachersTech
Are you new to Microsoft PowerPoint? This video tutorial will walk you through a beginners guide on how to use PowerPoint 2016. Start making fantastic PowerPoint presentations after watching this video. Click on the timestamps below to jump to different parts of the video.
0:52 Starting PowerPoint
1:31 Pinning to find easy later
2:45 Choosing a template
3:14 Tabs, ribbon and launch button
4:19 Tell Me
4:45 Adding text in title slide
5:18 Inserting new slides
6:54 Insert text box
7:10 Moving text box
8:10 Presenting your PowerPoint
9:14 Reorder slides
10:10 Add a quick design
11:14 Make your fonts look great!
12:20 Customizing your background in PowerPoint
15:02 Text options
16:37 Inserting WordArt
17:15 Insert images in PowerPoint
17:40 Formatting images
20:15 Remove background in an image
21:47 Adding animations to images
23:36 Adding slide transitions
25:09 Saving your PowerPoint
I use Camtasia to create my video tutorials: https://techsmith.pxf.io/KYOeN
My online teaching tech kit: https://kit.com/teacherstech/online-teaching-video-kit
DISCLAIMER: This video and description contain affiliate links, which means that if you click on one of the product links and end up purchasing it, I’ll receive a small commission. This helps support the channel and allows us to continue to make videos like this. Thank you for your support!
More...
Description:
10 Powerful Point Tips: https://www.youtube.com/watch?v=jgvlzAbcJ6A
Stay up to date, subscribe to Teacher\'s Tech: http://bit.ly/Subscribe_TeachersTech
Are you new to Microsoft PowerPoint? This video tutorial will walk you through a beginners guide on how to use PowerPoint 2016. Start making fantastic PowerPoint presentations after watching this video. Click on the timestamps below to jump to different parts of the video.
0:52 Starting PowerPoint
1:31 Pinning to find easy later
2:45 Choosing a template
3:14 Tabs, ribbon and launch button
4:19 Tell Me
4:45 Adding text in title slide
5:18 Inserting new slides
6:54 Insert text box
7:10 Moving text box
8:10 Presenting your PowerPoint
9:14 Reorder slides
10:10 Add a quick design
11:14 Make your fonts look great!
12:20 Customizing your background in PowerPoint
15:02 Text options
16:37 Inserting WordArt
17:15 Insert images in PowerPoint
17:40 Formatting images
20:15 Remove background in an image
21:47 Adding animations to images
23:36 Adding slide transitions
25:09 Saving your PowerPoint
I use Camtasia to create my video tutorials: https://techsmith.pxf.io/KYOeN
My online teaching tech kit: https://kit.com/teacherstech/online-teaching-video-kit
DISCLAIMER: This video and description contain affiliate links, which means that if you click on one of the product links and end up purchasing it, I’ll receive a small commission. This helps support the channel and allows us to continue to make videos like this. Thank you for your support!
6:36
|
Flash Text Dreamweaver Tutorial - English
Learn how to use Flash text so you don't have to worry about users having the font you use installed on their computer! Flash Text in Dreamweaver! Remember to
Learn how to use Flash text so you don't have to worry about users having the font you use installed on their computer! Flash Text in Dreamweaver! Remember to
17:15
|
Dreamweaver Tutorial Create a basic Webpage Insert Content - English
Learn how to Insert text and images, as well as change page properties and aligning your placed objects into some kind of order. Enjoy!
Learn how to Insert text and images, as well as change page properties and aligning your placed objects into some kind of order. Enjoy!
8:17
|
Dreamweaver CS4 Define Site Local Root Folder - English
Defining your site or local root folder as Dreamweaver calls it is the one thing you absolutely want to be able to do. Defining this root folder is the first step to using Dreamweaver very...
Defining your site or local root folder as Dreamweaver calls it is the one thing you absolutely want to be able to do. Defining this root folder is the first step to using Dreamweaver very effectively and allowing Dreamweaver to manage your site for you and keep all of the links-everything from images to other pages-updated as you move pages, elements, and files around in your site.
Defining a root folder takes a lot of the headache out of managing a website and allows you to properly use Dreamweaver. We are using Dreamweaver CS4 in this video but you should be fine following up to several versions back. Have fun!
More...
Description:
Defining your site or local root folder as Dreamweaver calls it is the one thing you absolutely want to be able to do. Defining this root folder is the first step to using Dreamweaver very effectively and allowing Dreamweaver to manage your site for you and keep all of the links-everything from images to other pages-updated as you move pages, elements, and files around in your site.
Defining a root folder takes a lot of the headache out of managing a website and allows you to properly use Dreamweaver. We are using Dreamweaver CS4 in this video but you should be fine following up to several versions back. Have fun!
12:54
|
Embed Sound & Video into Your Website Dreamweaver Tutorial - English
In the following tutorial we will learn how to import and attach mp3, mov, and wmv files to your website both by embedding and linking the files. Learn the advantages and disadvantages of both...
In the following tutorial we will learn how to import and attach mp3, mov, and wmv files to your website both by embedding and linking the files. Learn the advantages and disadvantages of both methods! Have fun and learn something! Please check out www.tutvid.com for more videos and downloads!
More...
Description:
In the following tutorial we will learn how to import and attach mp3, mov, and wmv files to your website both by embedding and linking the files. Learn the advantages and disadvantages of both methods! Have fun and learn something! Please check out www.tutvid.com for more videos and downloads!
7:22
|
Dreamweaver CS4 Getting Connected to Server and FTP Tutorial - English
This video is made for people just starting out in dreamweaver CS4. i thought it to be a fitting way to break the ice on our dreamweaver CS4 tutorial section at http://www.developphp.com
This video is made for people just starting out in dreamweaver CS4. i thought it to be a fitting way to break the ice on our dreamweaver CS4 tutorial section at http://www.developphp.com
3:57
|
How to Render Transparent Web Site Elements CSS Opacity Tutorial - English
If you do not want your text or images to fade inside, click here for that method:
http://www.youtube.com/watch?v=6nWK6Y8RZsc
Learn how to make your web page elements expose your cool backgrounds...
If you do not want your text or images to fade inside, click here for that method:
http://www.youtube.com/watch?v=6nWK6Y8RZsc
Learn how to make your web page elements expose your cool backgrounds and add a general modern feel to the look of your page. Not many webmasters apply it so it may help your designs stand apart a little bit more when cool background images are involved on the page. Brought to you by http://www.developphp.com
More...
Description:
If you do not want your text or images to fade inside, click here for that method:
http://www.youtube.com/watch?v=6nWK6Y8RZsc
Learn how to make your web page elements expose your cool backgrounds and add a general modern feel to the look of your page. Not many webmasters apply it so it may help your designs stand apart a little bit more when cool background images are involved on the page. Brought to you by http://www.developphp.com
4:46
|
Master Inline CSS Styling Dreamweaver Tutorial Dynamic Centering Included -English
See all of Adam's CSS lessons here:
(full online course and references)
http://www.developphp.com/list_css.php
Learn how to apply inline CSS style declarations using Dreamweaver's...
See all of Adam's CSS lessons here:
(full online course and references)
http://www.developphp.com/list_css.php
Learn how to apply inline CSS style declarations using Dreamweaver's AutoComplete feature.
More...
Description:
See all of Adam's CSS lessons here:
(full online course and references)
http://www.developphp.com/list_css.php
Learn how to apply inline CSS style declarations using Dreamweaver's AutoComplete feature.
8:11
|
Dreamweaver tutorial Button Rollovers Video Tutorial - English
This video was somehow automatically shortened by Youtube in Feb. of 2009. Instead of taking it down I decided to simply include a link to the full video on tutvid.com.
Learn how to create Web...
This video was somehow automatically shortened by Youtube in Feb. of 2009. Instead of taking it down I decided to simply include a link to the full video on tutvid.com.
Learn how to create Web button rollovers quickly and easily in Dreamweaver!
More...
Description:
This video was somehow automatically shortened by Youtube in Feb. of 2009. Instead of taking it down I decided to simply include a link to the full video on tutvid.com.
Learn how to create Web button rollovers quickly and easily in Dreamweaver!
11:04
|
Uploading Your Website to the Internet in Dreamweaver - English
Learn all about uploading your first website in dreamweaver! Learn the basics of uploading in general and things you should keep in mind and do when you are uploading your files and web pages. We...
Learn all about uploading your first website in dreamweaver! Learn the basics of uploading in general and things you should keep in mind and do when you are uploading your files and web pages. We will use a live (free) host I setup for this video and upload to that so you can get an idea of how it all works and how you can get your site up and running!
More...
Description:
Learn all about uploading your first website in dreamweaver! Learn the basics of uploading in general and things you should keep in mind and do when you are uploading your files and web pages. We will use a live (free) host I setup for this video and upload to that so you can get an idea of how it all works and how you can get your site up and running!
6:38
|
Flash Buttons Dreamweaver Tutorial - English
Learn all about Flash buttons inside of Dreamweaver, how to make them, edit them and use them in different ways! Remember to check out
Learn all about Flash buttons inside of Dreamweaver, how to make them, edit them and use them in different ways! Remember to check out
11:16
|
HD Spry Tooltips Dreamweaver CS4 Tutorial - English
One of the coolest new features in Dreamweaver CS4 is the addition of Spry ToolTips. Those of you that have used Spry anything know it is a breeze to create Spry objects and with a little CSS...
One of the coolest new features in Dreamweaver CS4 is the addition of Spry ToolTips. Those of you that have used Spry anything know it is a breeze to create Spry objects and with a little CSS knowledge it is easy to edit too! We will discuss creating, add content to, and styling with CSS tooltips.
More...
Description:
One of the coolest new features in Dreamweaver CS4 is the addition of Spry ToolTips. Those of you that have used Spry anything know it is a breeze to create Spry objects and with a little CSS knowledge it is easy to edit too! We will discuss creating, add content to, and styling with CSS tooltips.
25:01
|
Build a Web Form in Dreamweaver - English
In the following video we will build a web based form using html. We will cover using Labels, Text Fields, Text Boxes, Radio Button Groups, Checkboxes, The Clear and Submit buttons, Drop down...
In the following video we will build a web based form using html. We will cover using Labels, Text Fields, Text Boxes, Radio Button Groups, Checkboxes, The Clear and Submit buttons, Drop down Menus, as well as many of the properties you can edit while building the form. The form will be ready to be linked with a PHP file for use when you are finished with this video. Get ready to learn a whole lot! Have fun and check out..
More...
Description:
In the following video we will build a web based form using html. We will cover using Labels, Text Fields, Text Boxes, Radio Button Groups, Checkboxes, The Clear and Submit buttons, Drop down Menus, as well as many of the properties you can edit while building the form. The form will be ready to be linked with a PHP file for use when you are finished with this video. Get ready to learn a whole lot! Have fun and check out..
15:39
|
How to Create a Website the Right Way For Beginners Part 1 - English
Learn how to create a website the right way using any tools you like and simple CSS to lay the groundwork. I am using Fireworks CS4 and Dreamweaver CS4 to assemble my awesome power site. I can add...
Learn how to create a website the right way using any tools you like and simple CSS to lay the groundwork. I am using Fireworks CS4 and Dreamweaver CS4 to assemble my awesome power site. I can add Flash, graphics, or any other elements I choose to after I get the design shell made.
Brought to you by Adam @ http://www.developphp.com
More...
Description:
Learn how to create a website the right way using any tools you like and simple CSS to lay the groundwork. I am using Fireworks CS4 and Dreamweaver CS4 to assemble my awesome power site. I can add Flash, graphics, or any other elements I choose to after I get the design shell made.
Brought to you by Adam @ http://www.developphp.com
4:21
|
How to Create a Website the Right Way For Beginners Part 6 - English
Learn how to create a website the right way using any tools you like and simple CSS to lay the groundwork. I am using Fireworks CS4 and Dreamweaver CS4 to assemble my awesome power site. I can add...
Learn how to create a website the right way using any tools you like and simple CSS to lay the groundwork. I am using Fireworks CS4 and Dreamweaver CS4 to assemble my awesome power site. I can add Flash, graphics, or any other elements I choose to after I get the design shell made.
Brought to you by Adam @ http://www.developphp.com
More...
Description:
Learn how to create a website the right way using any tools you like and simple CSS to lay the groundwork. I am using Fireworks CS4 and Dreamweaver CS4 to assemble my awesome power site. I can add Flash, graphics, or any other elements I choose to after I get the design shell made.
Brought to you by Adam @ http://www.developphp.com
7:06
|
12:56
|
Simple Thumbnail Gallery Webpage Dreamweaver Tutorial - English
Here it is, finally creating a tutorial with a little foresight as far as using what we make here for many other tutorials. We will create a simple metal type panel with these six thumbnails...
Here it is, finally creating a tutorial with a little foresight as far as using what we make here for many other tutorials. We will create a simple metal type panel with these six thumbnails sitting on it. Using CSS to style the panel and the thumbnails we are able to create a really nice clean effect as well as giving out thumbnails rollovers and all of this is done very easily and is also super easy to update! Check it out, follow along using the files at the site!
More...
Description:
Here it is, finally creating a tutorial with a little foresight as far as using what we make here for many other tutorials. We will create a simple metal type panel with these six thumbnails sitting on it. Using CSS to style the panel and the thumbnails we are able to create a really nice clean effect as well as giving out thumbnails rollovers and all of this is done very easily and is also super easy to update! Check it out, follow along using the files at the site!
14:16
|
Fireworks 8 Tutorial Create Shiny Glass Text - English
This video was somehow automatically shortened by Youtube in Feb. of 2009. Instead of taking it down I decided to simply include a link to the full video on tutvid.com.
In this tutorial we will...
This video was somehow automatically shortened by Youtube in Feb. of 2009. Instead of taking it down I decided to simply include a link to the full video on tutvid.com.
In this tutorial we will create the shiny text you see all over the internet! We will learn how to use masking and the gradient tool in Fireworks as we create the text! Have fun creating your text as you follow along!
We are going to look at the difference between Live filters and traditional filters, as well as how to apply, work with, delete, edit, and save Live filters as Styles.
More...
Description:
This video was somehow automatically shortened by Youtube in Feb. of 2009. Instead of taking it down I decided to simply include a link to the full video on tutvid.com.
In this tutorial we will create the shiny text you see all over the internet! We will learn how to use masking and the gradient tool in Fireworks as we create the text! Have fun creating your text as you follow along!
We are going to look at the difference between Live filters and traditional filters, as well as how to apply, work with, delete, edit, and save Live filters as Styles.