Posts

Showing posts from July, 2020

My CV webpage with CSS and HTML

Image
Index.html: <!DOCTYPE html> <html lang="en" dir="ltr"> <head>   <meta charset="utf-8">   <title>Sagnik Bhattacharjee</title>   <link rel="stylesheet" href="css/styles.css">   <link rel="icon" href="favicon.ico">   <link href="https://fonts.googleapis.com/css2?family=Merienda&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat+Alternates&family=Sacramento&display=swap" rel="stylesheet">   <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,600;1,400;1,600&display=swap" rel="stylesheet"> </head> <body>   <div class="topcontainer">     <img class="topcld" src="images/cloud.png" alt="cloud-img">     <h1>I'm Sagnik.</h1>     <p class="ps...

My first HTML Webpage code

Index: <!DOCTYPE html> <html lang="en" dir="ltr"> <head>   <meta charset="utf-8">   <title>Sagnik's Personal Site</title>   <link rel="stylesheet" href="css/styles.css"> </head> <body>   <table cellspacing="20">     <tr>       <td><img           src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWp5B43CJt-jNp0kh3gbtLo-HhwVSg-_rTke7G6GQ_mEDp6DPN60lhfUxkz2RRTT5VXN62QDm5jx24vPtQaZf7_0wc4dNtfl9D6BNEOgqRb54utPaKEe6RjV8lBB_Am4wTRTV18s8vTkc/w153-h229-no/?authuser=0"           alt="Sagnik's Profile Pic"></td>       <td>         <h1><strong>Sagnik bhattacharjee</strong></h1>         <p><em>The Greatest <strong>Procastinator</strong> to ever walk on the earth</em></p>      ...