DEV Community

Saiful Islam
Saiful Islam

Posted on

A Portfolio Website(Using html,css and basic js)

First of all here is the raw of html code skeleton.
Here,

tag is crucial for Meta tags,styles connection with css or js and the link goes here.Very important for SEO optimization as well.

`


<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags, styles, and links go here -->
</head>
<body>
<!-- Page content goes here -->
</body>
</html>

`

For SEO consideration both of them are crucial at all:

<meta name="description">: This is a brief summary of your site, often used by search engines. You would replace this with a short description about yourself.

<meta name="keywords">: This allows you to define important keywords for search engines to find your page. Here you can list your skills, name, and anything relevant to your site.
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Value this insightful article and join the thriving DEV Community. Developers of every skill level are encouraged to contribute and expand our collective knowledge.

A simple “thank you” can uplift someone’s spirits. Leave your appreciation in the comments!

On DEV, exchanging expertise lightens our path and reinforces our bonds. Enjoyed the read? A quick note of thanks to the author means a lot.

Okay