Posts

Make a website with Html and Css

Image
  Make a website using html and css Get the design Html and Css code below | *Copy and paste your code editor. <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">   <meta http-equiv="X-UA-Compatible" content="IE=Edge">   <meta name="viewport" content="width=device-width, initial-scale=1">   <title>HTML</title>      <!-- HTML -->      <!-- Custom Styles -->   <link rel="stylesheet" href="style.css">   <link rel="preconnect" href="https://fonts.gstatic.com">   <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet"> *{     margin: 0px;     padding: 0px; }   .sectionHead {    width: 100vw;    height: 50vh;   }   .menuDiv {    width: 100vw;    height: 5rem;    display: flex;    position: fixed; ...

What is Html And Css

Image
 What is Html And Css. Welcome to HTML Basics. This workshop leads you through the basics of Hyper Text Markup Language(Html). Html is the building of web page. You will learn to use of HTML to author an HTML page to display in a web browser. Objective : By the end of this workshop, you will be able to: Use a text or code editor to author an HTML document. Just like notepad.ok Html code Editor Be able to use basic tags to denote paragraphs, emphasis or special type. Create hyperlinks to other documents.  Create an email link. Add images to your document.  Use a table for layout. Apply colors to your HTML document. Get my project source code. Copy and paste your code Editor. Multiple Login forms <!DOCTYPE html> <html lang="en"> <head>  <meta charset="UTF-8">  <meta http-equiv="X-UA-Compatible" content="IE=Edge">  <meta name="viewport" content="width=device-width, initial-scale=1">  <title...