Notepad/enter/Review & Putting it all tog...

71 lines
1.3 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# Web Design with Shway !
Welcome back. 😁
<br>
![gif](https://c.tenor.com/MS_AYz3G8t4AAAAC/tenor.gif)
---
## STEP 1: Open up a google doc, images & background color.
[https://html.onlineviewer.net/](https://html.onlineviewer.net/)
```html
<!DOCTYPE html>   
<html> 
<body>
<body style= “background-color:red”> 
<h1> Blah balah </h1> 
</body>
</html>
```
---
### STEP 2: Adding tables & embedding games + videos!
We have all heard about Scratch? Played games last week?
Let's play geometry dash --> [Geometry Dash ](https://scratch.mit.edu/projects/835488610/)
But **On our website!** :D
*Add your own games here*
```html
<!DOCTYPE html>   
<html> 
<body>
<body style= “background-color:red”> 
<h1> Blah balah </h1> 
<p> Lorem ipsum about random stuff that interests me. </p>
<h2> Geometry Dash Blah </h2>
<iframe src="https://scratch.mit.edu/projects/835488610/embed" allowtransparency="true" width="485" height="402" frameborder="0" scrolling="no" allowfullscreen></iframe>
</body>
</html>
```
---
### STEP 3: Publishing the website & additional CSS. 
[https://neocities.org/browse](https://neocities.org/browse)**
---
### Step 4: Additional Tips
* Go to [https://html-online.com/editor/](https://html-online.com/editor/) to learn about adding tables.