Showing posts with label css Tutorial. Show all posts
Showing posts with label css Tutorial. Show all posts

Tuesday 11 July 2023

Marksheet Template HTML | CSS

 


Educational Markheet template created using HTML and CSS. You can use this template for college results. This code is tested and you can create PDF while printing .

Source  Code

<html> <head> <title> Markesheet </title> <style> body{background-image:url('bg.jpg');background-size:cover;} .container { padding-right: 15%; padding-left: 15%; margin-right: auto; margin-left: auto; } @media(max-width:700px) { .container { padding-right: 5%; padding-left: 5%; } } .border{border:solid 1px black;} .imglogo{display:block;margin:auto} @media(max-width:700px) { .imglogo { width: 80%; } } .bold{font-weight:bolder;} .border-top{border-top:solid 1px black;} .border-left{border-left:solid 1px black;} .border-right { border-right: solid 1px black; } .padl{padding-left:5px;} .padr { padding-right: 5px; } </style>

Tuesday 22 June 2021

Coming Soon HTML Cloud Animated Page

 Coming Soon HTML5 Cloud Animated Page.




Source Code

<!DOCTYPE html>

<html>

<head>

Tuesday 25 August 2020

Zoom Anything on mouse over CSS

 

This post will help you to learn zoom something one your webpage like Image, div, table, or any HTML component in a simple way.

img

{

      width: 100%;

      transition: all 1s;

 }