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)