How to use the HTML5 main tag in Dreamweaver.

This lesson is exclusive to members

Course contents

Questions

You need to be a member to view comments.

Join today. Cancel any time.

Sign Up

Course info

38 lessons / 4 hours

Overview

Hi there, my name is Dan and together we’re going to build a portfolio website using Adobe Dreamweaver.

We’ll use Dreamweaver's handy templating tools to make updates to our site super easy. We’ll create our very own mobile 'burger menu' from scratch learning some basic Javascript & jQuery.

I am an Adobe Certified Instructor and better yet I work closely with Adobe themselves to develop their own online help videos. I am also a Dreamweaver speaker at the huge Adobe Max conference in Las Vegas 2017. I’m even inside your version of Dreamweaver right now... go on try it... open Dreamweaver > Go to Help > quick tutorial - I’m right there!This course is for beginners. You do not need any previous knowledge in Dreamweaver or web design experience. We will use Dreamweaver ‘split’ view so we can use all the good visual tools as well as doing some simple amends down here in the code as well.

In this series we will take this static design from either Illustrator or Photoshop and together, step by step, build everything in HTML, CSS & Javascript. We will make our own navigation. We will make adjustments so that everything looks great on different mobile devices.We will work with beautiful fonts & colours & even add Google Analytics to our site to get amazing information about exactly who visits your site.
 Now web design can sometimes be tricky so I am here to help - just message me if you get stuck. There are also exercise files so you can follow along. I even save a full copy of the website at the end of every video so that you can check yours again mine if you’re is not working quite right.

Check out this link here www.byolisawesome.com, for the site we build together. Let's get excited about finally being able to build a website like a professional web designer. See you in class.


What are the requirements?

  • You will need a copy of Adobe Dreamweaver CC 2017 or above. A free trial can be downloaded from Adobe.
  • No previous web design skills are needed.
  • No previous Dreamweaver skills are needed.

What am I going to get from this course?

  • 39 lectures 3+ hours of well-structured content!
  • You'll learn to build a responsive portfolio website from scratch.
  • Learn how to take a design from Illustrator & create a professional website.
  • How to use templates in Dreamweaver.
  • Create mobile, tablet & desktop versions of the website.
  • Build our own custom responsive navigation with burger menu.
  • Introduction to Javascript & jQuery.
  • How to publish your website to the internet.
  • Ways to preview your designs straight to your mobile device.
  • How to get the most from your portfolio Images.
  • How to use beautiful web fonts in your designs.
  • You will get the finished files so you never fall behind.
  • Downloadable exercise files & cheat sheet.
  • Forum support from me and the rest of the BYOL crew.
  • All the techniques used by professional website designers.

What is the target audience?

  • YES: This course is for beginners. Aimed at people new to the world of web design. No previous Dreamweaver experience is necessary.
  • NO: This course is NOT suited to people experienced in using HTML & CSS.

Course duration approx 4 hours + your study.
Daniel Scott

Daniel Scott

Founder of Bring Your Own Laptop & Chief Instructor

instructor

I discovered the world of design as an art student when I stumbled upon a lab full of green & blue iMac G3’s. My initial curiosity around using the computer to create ‘art’ developed into a full-blown passion, eventually leading me to become a digital designer and founder of Bring Your Own Laptop.

Sharing and teaching are a huge part of who I am. As a certified Adobe instructor, I've had the honor of winning multiple Adobe teaching awards at their annual MAX conference. I see Bring Your Own Laptop as the supportive community I wished for when I was first starting out and intimidated by design. Through teaching, I hope to bring others along for the ride and empower my students to bring their stories, labors of love, and art into the world.
True to my Kiwi roots, I've lived in many places, and currently, I reside in Ireland with my wife and kids.

Downloads & Exercise files

Download Exercise Files

Transcript

Hi there, in this tutorial we're going to add this main HTML5 tag here. It's where most of the copy goes for the website. We're going to make it nice and big, we're going to give it a minimum height, and we're going to make it green, just so that you can see it. I don't like that green, it's not going to stay around. All right, let's get on and make it.

So there are three main chunks to our website, there's a Header, which we've done, then there is a Main tag that goes in the middle, that's kind of all about Main Content, and there's a Footer. We've done Header, we need to put in Main now. And we're just going to put in an empty Main Box because we're going to make that box the editable thing on our website. So I can generate new pages and put unique content inside that Main Box. But we need the Container first, so we're going to put it after Header, so I'm going to click on my Header. Make sure it's selected down there, and we're going to go to Insert.

You can see, here's all my main structure to my website. Header and Navigation, we've done. We're going to do Main and Footer in a second. So let's put in Main, it's going to be after my Header. And there is my Main Box. We're going to leave that text in there, just going to help me identify where that box actually is. Now I should go through and add my Footer because it's meant to be directly underneath. The only trouble is, if I look at my design here in Illustrator, my Footer is way down the bottom here, and it's designed against a white background. It's going to be a bit hard for me in Dreamweaver to design this thing against this green background.

So what I could do is add some height to the Main Box. I could say it could be 800 pixels high, just so that it kind of pushes down and allows me to design out the bottom here. The only trouble with height is that it's an absolute figure. So if I say, be 800 pixels high, and my design later tries to go bigger, so, say 800, it incorporates this just fine, but then on another page that I'm designing, 800 only comes to about here, but this Image wants to go heaps bigger, and that causes loads of problems. It goes, "Well, I want to go 800" and the Image goes, "Why do you want me bigger?" And there's a big fight, and things start spilling all over the place.

The way to get around that is to use something called Minimum Height. So what you say is, "I want you to be a minimum of 800, but you can be a bit bigger if you like." Be as big as you like, actually. So it's going to set a minimum of 800, but a maximum of infinity. So that's a really good way of setting heights when you're designing Templates. So you're not too sure how big a box it needs to be, but it definitely doesn't need to be this small. It needs to be a bit bigger than this. So, I'm going to do that under the CSS Designer panel. I'm going to click 'Styles', 'Global', and nothing is actually clicking. Why is that happening? It's because, in between making these videos I was doing some other work, and I switched mine to 'Current'. I like Current, it means, all it's how we've been working in this course. Current means that, if I switch it to Current, and I click on, say that, it switches to the Style that I have currently selected. But we're going to shift back to 'All'.

Current is great when you've actually got a site, and it's finished, and you're actually getting pretty good at this, but we're going to click back to 'All' for the moment. So 'styles.css', we're going to put it in 'Global'. We're going to create a Style for 'main'. It didn't pre-fill it in. Remember, we've got full stops in front of the stuff that we make, the stuff that already exists, like this tag 'main'. We didn't name it, it just existed already, we added it. So you don't put the period in the front there, just straight old Main. We're going to say, "Main, I'd like you to have a height, not that one, I want a minimum height of 800 pixels." And this means it's going to be nice and big all the way down to the bottom here, so my Footer afterwards is going to have space to go in there.

What I might do just to make it obvious for you in this tutorial, is give it a background color of naff green. Well, I'm going to use actually the RGBa so I can use a bit of transparency. Why am I doing this? It's just so that you can see it when I preview it in a browser, and you can see where the Main goes. Let's preview in new browser. That's my Main Box, and it goes all the way down to here. We will move that in a second. I said I'll do this for you but often I do this when I'm constructing a website, it's really hard to know where tags start and finish. You add a background color, sometimes you're like "Oh, that's where that guy goes." So, we will move them in a sec. Next thing I want to do is add the Footer. And we'll do that in the very next video.

  • Powered by Marvin
  • Terms of use
  • Privacy policy
  • © Bring your Own Laptop Ltd 2024