How did he host this landing page on blogger?

There's a lot of vulnerabilities on this thing...
 
You screwed him already with your thread. Waiting for big G to ban the blog :D

You can edit html of blogspot blogs and use them as landing pages. People do a lot of crazy stuff with these blogs.
 
It's easy. Just switch to classic themes and there you can paste the whole code.

It doesn't support uploading css seperately, so it should be inline or hosted somewhere else (Gdrive, etc.).
 
It's easy. Just switch to classic themes and there you can paste the whole code.

It doesn't support uploading css seperately, so it should be inline or hosted somewhere else (Gdrive, etc.).
Thank. You're right, I uploaded the html code. It worked fine. But I don't know how to upload the CSS and JavaScript, you mentioned Google drive, how do I host it there?
 
You screwed him already with your thread. Waiting for big G to ban the blog :D

You can edit html of blogspot blogs and use them as landing pages. People do a lot of crazy stuff with these blogs.
Wasn't my intention at all. I just wanted to do the same for my Landers.
 
Thank. You're right, I uploaded the html code. It worked fine. But I don't know how to upload the CSS and JavaScript, you mentioned Google drive, how do I host it there?
You can search for Google Drive direct link generator.

Used to do this few years ago. Guess will be working now as well.
 
Copy the source code, go to themes, switch to first generation
Edit HTML
Paste source code and save
 
Just edit the html of a blogspot template and you can insert a div with CSS layered positioned absolutely, so it overlaps the entire screen and then show whatever you want on it.

Pretty basic stuff:
Code:
<div style="position:absolute;top:0px;left:0px;width:100%;height:100%;overflow:scroll">
<h2>Your real landing page</h2>
<p>COntent for page</p>
</div>
 
Back
Top