How do make simple website

martianus

Banned - selling outside of the marketplace.
Joined
Jan 9, 2021
Messages
55
Reaction score
11
I bought a domain on godaddy and hosting on CPanel. How do I make a simple page with just a background picture on my website?
 
Based on your question, you have 0 knowledge of html/css. So, I suggest you just follow one of the millions of tutorials for building a static HTML website OR you can use a site builder (again, many are free) and just host it once you're done.

If you more dynamic content, you can install Wordpress (which is a CMS = Content Management System)
 
Install WordPress and follow any guide in YouTube for making simple sites.
 
May be a blogger would be a good starting point for you.
 
Save this as index.html and upload it to your website account together with an image, change the image name/url in the code.

Code:
<html>
<head>
<style>
body {
  background-image: url('img.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
</style>
</head>
<body>

</body>
</html>
 
Save this as index.html

Code:
<html>
<head>
<style>
body {
  background-image: url('img_girl.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
</style>
</head>
<body>

</body>
</html>
I doubt he knows what to do with an index file
I
 
I doubt he knows what to do with an index file
I
That´s what he asked for exactly, if he needed more information, then he should provided more info in the question.
 
Softaculous 1 click install is very good for noobs
 
That´s what he asked for exactly, if he needed more information, then provide more info in the question.
It might be one of those situations where it's much easier to youtube it and watch a total beginner's tutorial than to ask. But hey, it's worth trying to help :)
 
Install wordpress, install the elementor plugin on wordpress, and then youtube "how to use elementor"

It's basically a drag and drop.

Alternatively, wix.com for a prebuilt drag and drop building.
 
Have a look on Youtube for help and worthwhile tutorials. Also, I'd recommend to start of using Wordpress.
 
I use an old version of dreamweaver, press a button to insert picture etc, as easy as it gets :)
 
Wordpress + elementor.. Good setup for beginner..
 
get $50 and pay someone with experience sometimes its better to use your resources than to do it yourself
 
Yeah, Wordpress + Elementor == Dynamic site
 
Back
Top