HTML和CSS教程
HTML和CSS教程
HTML+CSS Tutorial
Who
I'm Cassidy. I'm a engineer and I've been teaching myself HTML, CSS, and other web development and scripting for over 15 years. And I want to teach you now. Because you're good looking. And because it's useful.
What
In this tutorial, we'll start from the very beginning. You don't need to know anything about HTML and CSS or anything about code to start. I'll include some tutorial files for you to play with and check out.
When
Now. Or whenever. I'm not planning on taking this down anytime soon. But you are only limited by your own schedule. Or set free by it. Whatever.
Where
On a computer. Here.
Why
Because this stuff is important. Whether you're a business person formatting your emails, an aspiring web designer wanting to get your feet wet, or just someone who is interested and hasn't tried any sort of coding, scripting, or programming before, HTML and CSS are an essential part of your learning curve.
Table of Contents
HTMLEditorsTag StructureText StructureLinksOther tags ImagesLine BreaksTables Making Things Gorgeous The Wrong Way ColorsWidth and HeightBordersText Styles The
tagPutting it all together so far CSSClasses and IDs and other Segregation ClassesIDsOther Segregation The tagTheHTML Time. Let's Go.
Editors
So the first thing you'll need is an editor to edit your jazz. There's tons of options out there.
Notepad/TextEdit (that's right, the stupid thing that comes on your computer) - This is about as basic as you can get. It's totally okay if you want to use this, but I recommend one of the editors below just so you can see code highlighting (which will help you out later on). But, if you want to be a purist, this'll work just fine.Visual Studio Code - This is what I typically use. It's open source and has TONS of extensions available.Atom - This is another very customizable option, with a huge plugin library and open source so it's always being improved.Sublime Text 3 - This is a pretty popular option, and for good reason. Very clean interface. Once you can navigate it (learning curve isn't that big), it's pretty dreamy. Like your face.CodePen Projects - This is an in-browser code editor, so you can code directly within the web browser, no downloads required. :)Glitch - This is another in-browser code editor. It is meant for larger projects, but it's nice to not have to download anything!Notepad++ - This is just one step up from Notepad. But it's pretty dece. Code highlighting is in it, and nothing else too fancy, which is what I like about it.
There's a bunch of others listed here, I just listed the ones I've used and liked!
HTML Tag Structure
Here is a barebones HTML page, about as simple as you can get. You can open it up in the 1 - Structure folder in the file part1.html. If you were to open the file in your favorite browser (which you can do, go ahead), you'll see a plain webpage with the title "My Website" and the words, "Hello, World!" written on the page.
So, what are we looking at here? HTML, short for HyperText Markup Language, consists of these things called tags, which are words written between < and > characters, like
For example, is one tag and the closing tag for it is , same with
and and and , and so on. You get it. The opening and closing tags together are an element (which also includes everything written in it). For example,Tags organize your page and tell the browser what your page consists of. There's tons of tags out there, some that you may never use. Here's some lists of tags if you really care to see all of them at this point:
HTML Dog Tag ListW3Schools Tag ListQuackit HTML Tag List
So, if you look at our example, you can also put tags inside other tags (like we did with the
Let's take a look again at part1.html in the 1 - Structure folder. You'll notice that the first line has . Every HTML document and website has to have this special tag, as it tells the browser what language we're using. This is one of those special tags I mentioned that doesn't need a closing tag.
On the second line, you can see a tag. Everything in the website is contained by this tag, and the last line of your entire document will always be .
Inside , there are two elements:
andOn the other side of the planet, we have . Everything visible to the user is contained in these tags. Right now, all that consists of is "Hello, World!" Let's change that for fun. Replace "Hello, World!" with your own text in your favorite HTML editor, and then open the page in your browser. Neat!
Structuring text
Let's get juicy. We're going to talk about some new tags for structuring your text. Because you're not going to want just one style of text throughout your whole website, right?
Check out part2.html in the 1 - Structure folder. The tags that we'll be talking about here are
,
,
- , and
- . Open the file in the browser to try and understand what the heck is going on.
Now, let's talk about it.
First, we have
, which adds a heading to our website. Basically, a heading is just text with a bigger font. But still. Important. We'll soon learn how to adjust any and all font sizes, but not yet. Just know that your headings should be in
tags. Also, if you have a smaller heading, or sub-heading, you could use
, which is smaller than
, but bigger than regular text. You can keep going with more numbers until you reach
, with each heading a bit smaller than the previous. Try adding some subheadings underneath our current heading!
Next, we have
tags.
adds a paragraph of text to our website, which are blocks of text that have some space before and after them. Edit the text in the paragraphs given, and add your own to see what I mean!
And finally, we have
- .
- is an item in that list (called a list item). But what if you want a numbered list? You could change
- to
- ) to the list (make sure you stay inside the
- tags), and then change your
- tags in a list,
tags for a linking header, or completely on their own!
Adding links to other pages in your website
Let's just say you have a fully functioning website called fakewebsite.com. You have your homepage and your "Contact Us" page in the same directory or folder.
Normally when a beginner links to different pages on their website, they just make links that look like Home and Contact Us.
This is okay. BUT, you can do better. So, what if you change your domain name to reallyfakewebsite.com? When you edit your HTML, you'd have to edit every single one of the links to match the new domain. That's gross. There is a better way.
When you make a link to a page within your own directory or folder on your website, instead of putting in the whole URL, put in something more like this:
Click here to go back to Page 2.
Paste this line of code into page1.html. Watch the magic happen.
Now, if you were to change your domain or location of your files, you don't have to change a thing. Boo yah.
Other tags
So, you can reference the links that I showed you before if you want to check out some jazzy stuff you can do with your page. There are some other ones though that you might want to see before we move on to cooler and bigger things.
Images
. Let's just say you want to put an image on your website. This is probably a good tag to know. Add the following to page1.html:
Open up the page in a browser. WHOA. Image! So, the tag is one of those special tags. First of all, it doesn't have a closing tag. You just stick in a / at the end of the one tag and you're done. Secondly, it also has a src attribute (which is short for source), and in the value of that attribute you put the URL of the image (similar to href in the anchor tag).
One attribute that might be good for you to remember for tags is the alt attribute. If you changed the code above to:
When you load the page in the browser, the image looks the same. But, if you roll your mouse over the image, you'll see some words appear! WOW. That's the alt attribute. It stands for the alternate text for an image, and it's used when a user can't view the image for whatever reason (using a screen reader, slow connection, error in the src attribute, etc.). Or, in the case of XKCD, it's used to add more humor to the page (roll your mouse over all of the comics on the site, they always add another joke or two that a lot of people don't know about).
Line breaks
Let's just say you want to keep all your content in one paragraph
, but you still want to break it up.
That's easy.
So, there's two special tags here,
and
. They are empty tags, meaning they have no closing tag.
stands for horizontal rule, and creates a visible line break.
is a simple line break, all it does is split your paragraph up.Try inserting these in between some of your
tags to try it out!
Tables
Tables are really cool. They can also be a bit confusing. Open up tables.html (in the 2 - Tags folder) in a browser to check out the example table I made for you there.
There's several tags for tables, but the essential ones are
,
, , and . Look at tables.html in your editor. We're going to make our own table again on this page. You can delete the one I made for you, or just make one underneath the current one there.
So, to create a table, you start with the
tag. Simple enough.
This will contain all the parts of your table. Sometimes, tables have a border attribute that will equal some value for the thickness of the table's border (it's proper to have just "1" or nothing, for reasons we'll explain later). Go ahead and add one so it looks like this:
Boom. Let's add some more.
The next tag we're gonna check out is
, which is for a table row. Easy peasy. So, let's add 3 tags to our table. And finally, we have the actual cells of the table. There are two types of tags for this,
(table header) and (table data). As their names indicate, the former is for the header of the table and the latter is for all of the data in the table. In our first set of
tags, add 4 tags, and in the second and third tags add 4 tags. Alright! Our table is all set up. We have a table with a border=1 attribute, 3 rows, and 4 columns. Let's populate it with data so you can see a proper application of the
tag:
Item Quantity Rate Cost Candy 10 $.50 $5.00 Toothpaste 2 $3.00 $6.00 Open the page in a browser and check out your work. Nice job! I'm truly impressed. Go eat something good and fattening.
One other fun thing you can try playing with are the colspan and rowspan attributes. If you add colspan="2" (or rowspan, or any other number) into a
or tag, the cell will expand past their cell size. For example, will give you a table header that spans 2 columns, and will yield a cell that is the height of 3 rows. Jazzy! You can also nest tables, but I won't get into that right now. If you want to play around with the code, try adding some
and tags inside your current tags. MaGiCal ThInGs. Making Things Gorgeous The Wrong Way
So, your website right now looks pretty bland, and that's normal. But, we want a website that is hot, sexy, ravishing, and powerful. Yes, that's right, we want a website just like you.
So first, I will show you the wrong way to style your pages. You might ask why, but trust me, if you learn in this order, you'll understand HTML attributes a lot better, and then when you move on to CSS your mind will explode with joy. Explode.
Colors
Alrighty. Let's get frisky. Open up the 3 - Styles folder and the file style1.html. You might notice that this file is pretty bland right now, but that's what we're gonna fix. Be patient, my grasshopper.
Add this line of code in the
somewhere below the header tags (I made a lot for fun...):This text is hot like my body
Oh man. Load that baby in a browser. WHAT. MAGNIFICENT. COLOR.
The first thing we'll look at is the style attribute. You can style all kind of things in that, from colors to widths to heights to borders to weights. But for now, let's just talk color.
So, you might wonder, "what the heck how does that work can I just type any color in that space where red is?" And the answer is no. You can type a ton of colors there, like blue and yellow and cyan and magenta, but you can't just say oasisorange or electricwhite and hope that that'll work.
How do you get a specific color of your liking? Well that's when you use RGB or HEX colors. This is kind of a pain to grasp, it took me a little bit, so I'll explain it as simply as I can: RGB stands for Red, Green, and Blue. You can have the values 0 to 255 in each to form pretty much any color in existance. Whoa. The way to form an RGB code similarly to the one above is simple:. In this example, there's 255 reds, 0 greens, and 0 blues. So, it's all red. Boom, simple enough.
Now HEX colors is very similar. It consists of the hashtag sign #, and then 6 hexadecimal digits, which are 0123456789ABCDEF, with F being the highest digit. Like RGB, the first two digits of HEX are reds, the second two digits are blues, and the third couple of digits are greens. So, to write the same color code above, you'd do to get red, because you have FF for reds, 00 for blues, and 00 for greens. Simple? Simple.
Don't worry, you won't have to come up with RGB and HEX colors yourself. There's plenty of websites and programs and color pickers out there to help you with that. Here's a few:
Color PickerHTML color codes and namesHTML Color CodesHTML Color Picker
Try adding colors to various tags on the page! You can make your
the color #005DFC, your
tag rgb(242,127,56), and your
tag lightblue. Keep playing til you're happy.
Now, you might see the syntax in your HTML journey where you actually have the color attribute, like
wut
. Though this is technically allowed, please don't do this. Please. You'll be so much happier in the long run, I promise.Width and Height
So, what if you want to make a picture or a paragraph a different size? Easy peasy.
There are two options you can use, the style attribute and the width and height attributes. I'll show you both.
Take this block of code here and stick it into style1.html:
Now, let's just say you want the image to be an exact size, say, 600x800. All you need to do is add width and height attributes to do just that!
Load that baby in a browser. Boo yah. But, you'll notice that the proportions of the image are a little off. What a pain. That's actually pretty easy to fix. Let's say that you absolutely have to have the width at 600 pixels, but the height can slide. It's as easy as taking out the height attribute.
Refresh dat page. Huzzah. Same works for if you have a set height that you want, just include the height attribute and not the width.
Now, you can also do these changes with the style attribute.
Simple enough! Now, we've looked at the style attribute a bit now but I haven't explained the syntax. The style attribute is for inline styles. This means that you're styling your HTML directly in each element, rather than using CSS. But, we haven't gotten that far yet, so I won't go into that part.
Now, the syntax within a style attribute is a little funky. It is always, where the property is literally a property of the tag you're editing (for example, color, width, height), and the value is to what you're changing or editing the property (for example blue, 600px, #FF0000). If you have more than one property that you want to style, for example both height and width, you put a semicolon between delarations. So, in our example, if you want to edit both height and width of our image in the style attribute, we'd do:
Why is the syntax this funky? Well, that's because it's secretly CSS syntax. But we'll get into that more later.
Borders
What if we have a paragraph IN A BOX. That's right. Kind of like a table. But not. That'd be cool. Of course, there are plenty of other things that can have a border. Buttons (we'll get to those later), color blocks (also later), and images, and MORE can have them. Mmmhm.
Let's take the same image we played with before:
Now, you can add border="5" to this and you'll get a border with a thickness of 5 pixels around the image. But, this attribute is actually no longer supported for things other than tables (oh yeah, we used this for tables. Memories.), so we can do this a better way. You guessed it. style is coming to SAVE THE DAY.
The styling for borders with the style attribute is a bit different than just adding border="5", but it's also much more powerful. Let's change our code:
Whoa. That's a lot of crap in there. Let's break it down.
The first part of the declaration is obvious, border. This is the property that we're editing. Man, this is easy.
Next, we have 3 parts in the value section. The first part is 5px. Firstly, px stands for pixels. We used this above for our width and heights as well. You always have to include the units (just like in 5th grade math) in your styling, and our units here are pixels. Now, that whole first part, 5px, is the border's thickness. You guessed it: it's 5 pixels thick. Gosh you're smart. The next part is the border style. You can plug in several words here, as indicated on this webpage. We used solid, but you can also say dotted, dashed, or double. There are some other words you can use, but those depend on the color of the border. Color? What? OH YEAH. That's the third part of the border style. You can stick in any color for that, but in this example, we have black.
Let's mix it up a bit with different borders for you to check out. I'm just going to keep using the same image, you can replace it with whatever. Stick this in the
tags of style1.html and check it out, and play with the values yourself!Notice how I added width and height to a couple of them. We're getting incestuous with our stylings. Aww yeah.
Text Styles
Besides having header tags and colors, there are other text styles that you can use. What if you want bold text, or italics? Different sizes? Once again, the style attribute comes to the rescue.
Add the following to style1.html in 3 - Styles:
This text is magnificent.
Load that in a browser and check it out. YUS. You've got some magically centered, bolded text! The properties defined here are pretty simple to follow. text-align lets you align your text either center, left, or right. Mess around with that so you get it. font-weight, you guessed it, edits the weight in your text. It can have the values normal for normally weighted text, bold for thick characters, bolder for thicker characters (specific, right?), lighter for lighter-weighted characters, and the numbers 100, 200, 300, 400, 500, 600, 700, 800, and 900 (where 400 is the same as normal and 700 is the same as bold).
Play with this one now:
This text is magnificent.
Browser time. You've now got some text in the font Arial, and it's italic! WOOO HOOOOOO. The properties we used here are font-family and font-style. For the former, you can choose a lot of fonts, but you have to be careful. Not every computer has the same fonts. This is just my personal opinion: don't put something here besides Arial unless you've done some JavaScript magic. And because I'm assuming you don't know JavaScript, don't use this unless you're changing this to Arial. At least not yet. :) And for font-style, it can be normal, oblique, and italic. You can play with those now, it's pretty straightforward.
The
TagBefore we start going insane with how good you are at HTML, let's start looking at something that you haven't played with yet. The
tag.I mentioned before that in the
is information that the user doesn't see, so it's not that big of a deal, right? WRONG. It's not all about looks. That's at least what I try to tell people when they see me.So. What else can go in the
? We've already got, which we've talked about already to help search engines find us. What if we want to help the search engines out a bit more? Incoming, the tag. The tag gives metadata about the HTML document. Metadata will not be displayed on the page, but machines can read it. An example of metadata not on a webpage is in a typical music file. When you have a music file on your computer and you open it in some media player of some kind, it shows the album title, the artist, the genre, and other information about the song. This information is metadata. The user can't see it directly in the music file, but your music players can read it and will tell you what it is. So, on a website, this metadata is used by search engines, your browser, and other web services to make your website easy to find, read, and display.
There are 4 important uses for the tag. There are plenty of other uses, but let's be honest, I don't care about them right now, and I don't think you do either. Open up the 4 - Head (heh get it? Forehead? I crack myself up.) folder, and open cooking.html in your favorite editor.
Defining keywords for search engines. Let's say that you have a website that's about cooking, hence our filename. You want people searching for your website to be able to find it. So, you can add the following right before the
tag: Simple enough. Now, when people search using the terms cooking, cook, recipe, food, and microwave, your website is pushed up in the results. Nice!
Defining a description of your site. Again, this one is for the search engines. Whenever you search for a website, there's a tiny description in the search results. Go search for anything right now, and you'll see it. So, you can define what that is with this snippet:
Add this right after the keywords line in cooking.html. Now if people were searching for this, they'd get this description and instantly see that your website is the best cooking website in the universe.
Defining the author of a website. Let's say that someone's looking for the author of your website, because your writing style is sexy. Or something. You can let them know who you are with the following:
Add this after your description line, and stick your name in it! I think I got it as close as possible.
Refreshing your document every 30 seconds. This one is for your browser. Let's say that you have comments available on your recipes, and you want to have the page refresh so the comments can appear "live". Just add this:
And there you have it, a self-refreshing webpage. You're so good at this.
Putting it all together so far
Okay, you have a pretty solid understanding of stuff so far. I want you to take cooking.html, and make it shine. Resize the images so the page is more uniform. Add borders to them. Change the font styles and weights. Change the colors. Add some keywords in the metadata and change the title of the page. Using the information I've given you so far, you can make a pretty good looking site!
CSS is magical, and now you're gonna learn it.
So far, we've been making things pretty the wrong way. So, we're going to learn it the right way. So excited.
Right now, I'm going to show you how to write CSS just straight in your HTML documents. That's still kind of wrong, but it'll give you the basics. After that, we'll move into the big leagues and have separate files for everything. Pumped.
Open up your 3 - Styles folder again and open style2.html in your favorite editor. This site is pretty barebones. Let's take out the barebones part and just make it pretty.
We're going to be working in the
tag again. Underneath thetag, stick in the following: Congratulations. You have some empty CSS. Now, what the heck is CSS anyway? Well, CSS stands for Cascading Style Sheets. Gee whiz, that word style is everywhere. And it's true. The style attribute is for styling inline HTML (just that line of code), the
Recognize that? It's exactly the same! For each selector, there is a property of that selector, and each property has a value, just like how we wrote it in the style attributes!
You will always have your CSS in the syntax, selector { property: value; property: value; }. I've only shown you some properties so far, but don't worry. There are plenty more to come.
Try playing around with the CSS we have right now. Edit the colors, add some borders, change the font styles. Don't forget your semicolons!
Classes and IDs and other Segregation
So, you have some of the CSS basics down already. You're so smart. It's really a simple language, once you know the basic syntax. So, now we'll get into more fancy stuff. What if you want to edit several tags differently?
Classes
Let's say that we have 8
tags on our HTML page (hint: open style3.html in the 3 - Styles folder). If we want to style each of these tags differently, we can use classes. A class is actually an HTML attribute that you can name whatever you want. Check out style3.html to see the classes I added to the
tags on the page. When you add a class, the user doesn't see it. But, you can style specific classes to do what you want, instead of having all
tags be the same.
How about we style one of the classes specifically? It's simple. Just take the class name you made up (I'll use the poemtitle class for my example) and add a period . in front of it to select it in CSS, like so:
.poemtitle {}
And there you have it! Even though you might have different styles for your paragraphs, you can style the ones of class poemtitle individually. For this example, let's make all paragraphs with the font family Arial, the poemtitles font weight bolder, the authors the color #555555, and the poems in italic. Try doing it on your own if you can (just put your code in the given
- tags to
- !
Links
Links are what makes the world/Internet go 'round. Seriously. So, let's learn about them.
Links are made with the tag, which stands for anchor.
Open up the 2 - Tags folder, and add this piece of code right after your heading in page1.html:
This paragraph has a totally awesome link.
Open page1.html in a browser and click on it! BEAUTIFUL.
Okay, so let's take a look at this. First of all, you can see the tag there contained in the paragraph. Beautiful. But what's that funky milk href=? Well, that syntax called an attribute. Attributes change the way a tag works, and are not visible to the website's user. You only add attributes to the opening tag, not a closing tag. Tags can have multiple attributes, for example:
Content of tag `Got it? Good. You're so good looking.
So, anyway, the attribute 'href' tells us where the link is going to go when the user clicks on it (and for those curious, it stands for hyperreference). Try adding some more links to the page to different websites!
Also, one thing you should note: Links don't have to be in
tags like I put above. You could put them in
- tags in a list,
- (and don't forget its closing tag), it's that simple!
- is an ordered list, which has numbers instead of bullet points, and that is truly the only difference. Add some list items (
- ) to the list (make sure you stay inside the
- means a bulleted list (also known as an unordered list), where every
- is an item in that list (called a list item). But what if you want a numbered list? You could change