Posts

Image
RESTAURANT   PAGE  USING HTML AND CSS HTML: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title >Alif</ title >     < link rel = "stylesheet" href = "style.css" > </ head > < body >     < div class = "Header" >         < nav >             < h1 >Alif</ h1 > < ul >         < li >Home|</ li >     < li >Recipe|</ li >     < li >Contact|</ li > </ ul > </ nav >     </ div >     < div class = "product" >         < div class = "box" >         < img src = "cake.jpeg" alt = "cake" >    ...
Image
                        "NEW YEAR COUNTDOWN" SOURCE CODE:                     <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Document </ title > </ head > < body >     < html lang = "en" >   < head >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" />     < title > Countdown to new year </ title >     <!-- Google Font -->     < link       href = "https://fonts.googleapis.com/css2?family=Poppins:wght@600;800&display=swap"       rel = "stylesheet"     />   ...
Image
                           MY PROFILE(HTML) SOURCE LINE :                                        <!DOCTYPE html> <html> <head>     <title>Profile Page</title>     <style>         body {             background-color: #f1f1f1;             font-family: Arial, sans-serif;         }                 h1 {             text-align: center;             color: #666;         }                 .container {             background-color: #fff;           ...
Image
                         SMTP CONCEPT DESIGN: CODINGS: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Net.Mail; using System.Net; namespace mailotp {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }                  private void button1_Click(object sender, EventArgs e)         {             generateotp();             sendemail();         }         string otpm = string.Empty;         p...
Image
                           HTML LOG IN FORM CODING: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Document </ title > </ head > < body >     <! DOCTYPE html >     < html >     < head >         < title > Login Form </ title >         < style >             body {                 background-color : #f2f2f2 ;             }             form {                 background-color : white ;             ...
Image
                              PRINTING_CONCEPT FORM ONE DESIGN:   CODINGS FOR FORM1: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Drawing.Printing; namespace printing_lines {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         Font font1 = new Font("Times New Roman", 9);    // Default Text         Font font2 = new Font("Times New Roman", 10);    // BillNo, Date & Customer                                ...

VISUAL STUDIO PRACTICE-PROJECTS

Image
                        VISUAL STUDIO PROJECTS                                                                                                                                              ARITHMETIC OPERATIONS :        FORM DESIGN: CODINGS: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace oper2 {     public partial class Fo...