DEV Community

Gaurav Chaddha
Gaurav Chaddha

Posted on

4

Making my own startpage using HTML/CSS

This week I learned HTML and CSS from Thinkful Frontend development course included in Github student pack. I always wanted to have a cool browser startpage, so I went ahead and coded one myself using HTML/CSS I had learned. It took me about 5-6 hours to create my first startpage. Here is how it looks.

I also had to deploy a small server to serve the startpage to Firefox because I wanted the link to look better than "file:///". So some quick Google searches lead to a small startup server script. I then use that server's address and port as my home page in Firefox.

Source: https://github.com/GauravChaddha1996/startpage
Care to share yours?

Heroku

Build apps, not infrastructure.

Dealing with servers, hardware, and infrastructure can take up your valuable time. Discover the benefits of Heroku, the PaaS of choice for developers since 2007.

Visit Site

Top comments (2)

Collapse
 
ben profile image
Ben Halpern

So some quick Google searches lead to a small startup server script.

May I ask what this was?

Collapse
 
gauravchaddha1996 profile image
Gaurav Chaddha

I could set a local file as my startpage but I really disliked the link coming as "file:///". While searching for ways to do this - somebody suggested to start a local server to serve the startpage. So I made a small python script after some Google to start a local server at port 8000(I'll post the python code later when I'm home. It simply used httpd server). Then I made the startpage it was serving as my home tab in Firefox. Finally I added the command to startup applications in my Ubuntu installation to make sure the server gets started after the boot-up.

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay