Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu
Showing posts with label Html. Show all posts
Showing posts with label Html. Show all posts

Wednesday, 9 May 2018

URL character encoding

URL encoding means conversions of characters present in a URL (Universal Resource Locator) to a form that can be transmitted over the Internet.

The list of characters and there encode are given below: -

      backspace                       %08
      tab                                 %09
      linefeed                          %0A
      creturn                           %0D
      space                             %20
      !                                    %21
      "                                    %22
      #                                   %23
      $                                    %24
      %                                  %25
      &                                   %26
      '                                     %27
      (                                    %28
      )                                    %29
      *                                   %2A
      +                                   %2B
      ,                                    %2C
      -                                    %2D
      .                                    %2E
      /                                    %2F
      0                                    %30
      1                                    %31
      2                                    %32
      3                                    %33
      4                                    %34
      5                                    %35
      6                                    %36
      7                                    %37
      8                                    %38
      9                                    %39
      :                                     %3A
      ;                                     %3B
      <                                    %3C
      =                                    %3D
      >                                    %3E
      ?                                    %3F
      @                                   %40
      A                                    %41
      B                                     %42
      C                                     %43
      D                                     %44
      E                                     %45
      F                                     %46
      G                                    %47
      H                                    %48
      I                                     %49
      J                                     %4A
      K                                    %4B
      L                                     %4C
      M                                   %4D
      N                                    %4E
      O                                    %4F
      P                                     %50
      Q                                    %51
      R                                     %52
      S                                     %53
      T                                     %54
      U                                     %55
      V                                     %56
      W                                   %57
      X                                     %58
      Y                                     %59
      Z                                     %5A
      [                                     %5B
      \                                     %5C
      ]                                     %5D
      ^                                     %5E
      _                                     %5F
      `                                     %60
      a                                     %61
      b                                     %62
      c                                     %63
      d                                     %64
      e                                     %65
      f                                     %66
      g                                     %67
      h                                     %68
      i                                     %69
      j                                     %6A
      k                                     %6B
      l                                     %6C
      m                                   %6D
      n                                     %6E
      o                                     %6F
      p                                     %70
      q                                     %71
      r                                     %72
      s                                     %73
      t                                     %74
      u                                     %75
      v                                     %76
      w                                     %77
      x                                     %78
      y                                     %79
      z                                     %7A
      {                                     %7B
      |                                     %7C
      }                                     %7D
      ~                                     %7E
      ¢                                     %A2
      £                                     %A3
      ¥                                     %A5
      |                                     %A6
      §                                     %A7
      «                                     %AB
      ¬                                     %AC
      ¯                                     %AD
      º                                     %B0
      ±                                     %B1
      ª                                     %B2
      ,                                     %B4
      µ                                     %B5
      »                                     %BB
      ¼                                     %BC
      ½                                     %BD
      ¿                                     %BF
      À                                     %C0
      Á                                     %C1
                                           %C2
      à                                    %C3
      Ä                                     %C4
      Å                                     %C5
      Æ                                     %C6
      Ç                                     %C7
      È                                     %C8
      É                                     %C9
      Ê                                     %CA
      Ë                                     %CB
      Ì                                     %CC
      Í                                     %CD
      Π                                    %CE
      Ï                                     %CF
      Р                                    %D0
      Ñ                                     %D1
      Ò                                     %D2
      Ó                                     %D3
      Ô                                     %D4
      Õ                                     %D5
      Ö                                     %D6
      Ø                                     %D8
      Ù                                     %D9
      Ú                                     %DA
      Û                                     %DB
      Ü                                     %DC
      Ý                                     %DD
      Þ                                     %DE
      ß                                     %DF
      à                                     %E0
      á                                     %E1
      â                                     %E2
      ã                                     %E3
      ä                                     %E4
      å                                     %E5
      æ                                   %E6
      ç                                     %E7
      è                                     %E8
      é                                     %E9
      ê                                     %EA
      ë                                     %EB
      ì                                     %EC
      í                                     %ED
      î                                     %EE
      ï                                     %EF
      ð                                     %F0
      ñ                                     %F1
      ò                                     %F2
      ó                                     %F3
      ô                                     %F4
      õ                                     %F5
      ö                                     %F6
      ÷                                     %F7
      ø                                     %F8
      ù                                     %F9
      ú                                     %FA
      û                                     %FB
      ü                                     %FC
      ý                                     %FD
      þ                                     %FE
      ÿ                                     %FF


Hope you find the article helpful & interesting. For any query, comment us below.

Previous - What is HTML?


Click imagination hunt to read latest blogs.


Keep learning and sharing...
Read More »

Monday, 23 May 2016

My First HTML Web Page


In our previous blog, we have given some basic introduction to HTML Language. Please read if you are new to Web Programming.

Before going through the blog, you need to have a text editor/notepad and a web browser.
To open a notepad. Read Blog How to open notepad?

In this blog, we are going to create our first HTML Web page. For this, we need to understand the very first 4 basic HTML tags. And those four basic tags are:
1) html: <html>…</html> is the container tag. It describes an HTML document.
2) head: <head>...</head> tag describes the page heading section. It is invisible on the webpage.
3) title: <title>…</title> tag is used to put the title of the web page in the browser. This is the only tag which is visible in the head section/tag.
4) body: <body>…</body> tag is a container for visible content on the browser.

Point to remember

1) Html is all about tags.
2) Every tag must be enclosed with opening and closing angular brackets (For e.g. < >).
3) In Html, every tag that starts should necessarily be ended with the same name plus with a backward slash character (for e.g.  <abc>……</abc>)
4) Html web pages are written over text document or Notepad.
5) Save as the file by giving the filename with .html or .htm extension.
6) Open with the file in any browser (for e.g. Microsoft Edge or Google Chrome)

You can develop your first HTML Web page by watching the below given .GIF Image.
 
Creating LIVE HTML Web page

OR to create your first Web Page, follow these steps: -

Step-1) Start typing your HTML code on the notepad or text editor.

Practical Implementation:

<html>
<head>
     <title>
          My First Web Page
     </title>
</head>
<body>
     This is my First Html Web Page. I am hosting this Page in my default Web browser Google Chrome.
</body>
</html>

Step-2) Follow Point no. 5 from above explained - point to remember section.

Step-3) Follow Point no. 6 from point to remember.

Output: The output is shown in below figure.
 
Hosted Web page on Browser


For any query, comment us below.

Previous - What is HTML?

Next - TOP 15 VISUAL STUDIO SHORTCUT KEYS - #1

Related Questions: -


Q-1 Which of them are text editor?
A) Notepad++
B) Sublime Text
C) Vim
D) Emacs
E) Neither C nor D
F) All (A), (B), (C), (D)   
Ans- Option (F).

Q-2 How to comment HTML code?
A) <% … %>
B) <%-- … --%>
C) <!-- … -->
D) /* … */
Ans- Option(C).



Click imagination hunt to read latest blogs.

Posted By - +Manish Kumar Gautam +LIVE VIAR +ASP.NET SOLUTIONS

Keep learning and sharing...
Read More »

Featured post

Think that makes you rich and richer

 Napolean said: “You can think and grow rich, but if you can be brought up like most people with work and you won't starve, this wil...