Craze
Alt + F4
- Messages
- 229
- Reaction score
- 163
- Points
- 903
Intro
Web Development 101 is a thread to help teach you web development. I might continue updating this thread in the future or maybe turn into an eBook. I am in no way an expert so yeah. Hopefully, you'll learn some HTML, CSS, JavaScript and anything else on here. Please leave feedback on this, it's much appreciated.
Btw, the thread is kinda broken, so don't follow this tutorial yet
HTML
Web Development 101 is a thread to help teach you web development. I might continue updating this thread in the future or maybe turn into an eBook. I am in no way an expert so yeah. Hopefully, you'll learn some HTML, CSS, JavaScript and anything else on here. Please leave feedback on this, it's much appreciated.
Btw, the thread is kinda broken, so don't follow this tutorial yet
HTML
HTML stands for Hyper Text Markup Language, it is used to structure the webpage. In HTML, you can just write text, the tags just add extra (although, it is good to use tags for most things). Firstly, create a folder called something you'll remember (e.g: HTML learning). In that folder, make a file named "index.html". Open that folder in a text editor like Sublime Text. In the file put this in:
These are tags, with the text html in them. This basically shows the browser that this is a HTML file and should be shown like one. Inside the html tags, put
This is where all the pages content will go. Our file should look like
Inside the body, add
. Well done, you've made your first website, you can change "My first webpage" to whatever you like. Your code should look like
I will be back soon adding to this! This is not the end.
Code:
<html>[/SIZE][/SIZE][/SIZE][/SIZE]
[SIZE=6][SIZE=4][SIZE=6][SIZE=4]
</html>
Code:
<body>[/SIZE][/SIZE][/SIZE][/SIZE]
[SIZE=6][SIZE=4][SIZE=6][SIZE=4]</body>
Code:
<html>[/SIZE][/SIZE][/SIZE][/SIZE]
[SIZE=6][SIZE=4][SIZE=6][SIZE=4] <body>
</body>
</html>
Code:
<h1>My first webpage</h1>
Code:
<html>[/SIZE][/SIZE][/SIZE][/SIZE]
[SIZE=6][SIZE=4][SIZE=6][SIZE=4] <body>
<h1>My first webpage</h1>
</body>
</html>
Last edited: