Discuss Scratch
- Discussion Forums
- » Show and Tell
- » My HTML thing.
- OSimulators
-
68 posts
My HTML thing.
Sorry that this might be out of subject, but I made a website in HTML on CodeHS. Here's the URL: flynnnewt.codehs.me
Put in the comments what you think of the website.
Put in the comments what you think of the website.
- happyland440
-
1000+ posts
My HTML thing.
It's good. I'd like a different font and a bit of CSS.
- OSimulators
-
68 posts
My HTML thing.
Sorry, I don't know how to make different fonts.
Last edited by OSimulators (March 23, 2016 05:32:19)
- jacklesauce
-
5 posts
My HTML thing.
I would add CSS. CSS is pretty easy, instead of your <h1> or <p> use <style>
Under the style tag, put your CSS stylesheet.
Example:
<style>
background-color: black;
text-align: center;
</style>
w3schools.com is a good place to learn HTML and CSS
Under the style tag, put your CSS stylesheet.
Example:
<style>
background-color: black;
text-align: center;
</style>
w3schools.com is a good place to learn HTML and CSS
- Scratcher1002
-
1000+ posts
My HTML thing.
However, you have to put something like: I would add CSS. CSS is pretty easy, instead of your <h1> or <p> use <style>
Under the style tag, put your CSS stylesheet.
Example:
<style>
background-color: black;
text-align: center;
</style>
w3schools.com is a good place to learn HTML and CSS
#tag {
background-color:#0E0F5A;
}
Try something like: Sorry, I don't know how to make different fonts.
<head>
<style type="text/css">
body {
font-family: Garamond; /* replace "Garamond" with whatever font you want. */
}
</style>
</head>
Last edited by Scratcher1002 (May 6, 2016 17:58:50)
- OSimulators
-
68 posts
My HTML thing.
This is an old post. I already now how to do this.However, you have to put something like: I would add CSS. CSS is pretty easy, instead of your <h1> or <p> use <style>
Under the style tag, put your CSS stylesheet.
Example:
<style>
background-color: black;
text-align: center;
</style>
w3schools.com is a good place to learn HTML and CSS
#tag {
background-color:#0E0F5A;
}Try something like: Sorry, I don't know how to make different fonts.<head>
<style type="text/css">
body {
font-family: Garamond; /* replace "Garamond" with whatever font you want. */
}
</style>
</head>
- OSimulators
-
68 posts
My HTML thing.
This is an old post. The website is just trash, and it's not a proper one. change the background color!
- Discussion Forums
- » Show and Tell
-
» My HTML thing.