Recents in Beach

Download Microsoft Office 2010      Download Logic Circuit 2.20.01.15      Download Visual Studio 2010      Download Visual Studio 2013      Download NotePad++ 7.8.4      Download Matlab 2010      Download NetBeans for Java z     ئەو پرۆگرامێ تە بڤێت لسەر کلیک بکە  

HTML TAGS


  1. @ECHO OFF
  2. if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
  3. if NOT EXIST Private goto MDPrivate
  4. :CONFIRM
  5. echo Are you sure to lock this folder? (Y/N)
  6. set/p "cho=>"
  7. if %cho%==Y goto LOCK
  8. if %cho%==y goto LOCK
  9. if %cho%==n goto END
  10. if %cho%==N goto END
  11. echo Invalid choice.
  12. goto CONFIRM
  13. :LOCK
  14. ren Private "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
  15. attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
  16. echo Folder locked
  17. goto End
  18. :UNLOCK
  19. echo Enter password to Unlock Your Secure Folder
  20. set/p "pass=>"
  21. if NOT %pass%== YOUR PASSWORD goto FAIL
  22. attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
  23. ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
  24. echo Folder Unlocked successfully
  25. goto End
  26. :FAIL
  27. echo Invalid password
  28. goto end
  29. :MDPrivate
  30. md Private
  31. echo Private created successfully
  32. goto End
  33. :End
  34. .............................................................................................




<HTML>
     These tags enclose the entire Web page document.
</HTML>

<HEAD>
    These tags enclose the Head part of the document
</HEAD>

<TITLE> These tags enclose the title of the document.  This text appears in the title bar in the browser and on the bookmark list if someone bookmarks your web page.
</TITLE>

Sample Structure of a Web Site

<HTML>
<HEAD>
<TITLE> John Q. Public's Web Page </TITLE>
</HEAD>

<BODY>
This is John Public's Webpage!
</BODY>
</HTML>


Header Tags

Header Tags -- Used for marking sections and subsections in a document.

<H1>Header 1 -- Giant-sized and bold </H1>
<H2>Header 2 -- Large and bold </H2>
<H3>Header 3 -- Normal-sized and bold </H3>
<H4>Header 4 -- Small and bold </H4>
<H5>Header 5 -- Very Small and bold </H5>
<H6>Header 6 -- Tiny and bold </H6>


H1 = Giant-sized and bold

H2 = Large and bold

H3 = Normal-sized and bold

H4 = Small and bold

H5 = Very Small and bold

H6 = Tiny and bold


Breaking Lines and Paragraphs

<P> text </P>
 -Paragraph tag
 -Most browsers render (process) this with blank lines between each paragraph
<BR> 
 -Line break tag
 -Used when the webmaster wants a carriage return but doesn't want a blank line to follow

Example:
                                               text a
  <p>text a</p>
  <p>text b</p> text b

 <br>text c
  <br>text d           text c
                           text d

Horizontal Rule

The <HR> tag puts a graphical line across the page.

Ex:
Horizontal Rule Attributes:
WIDTH="xx%/xx" --  Controls the width of the line.  You may specify   either percentage of the                                          width of a page or actual   pixel length
SIZE="xx" -- Controls the height of the line.  You need to specify the
                                 dimension in pixels.
ALIGN="left/center/right" -- This allows the line to be aligned to the left,
                                  right, or center of the page

Text Formatting Tags
Some basic text formatting styles:

Tag  Result
<I> Italics </I>  Italics
<B> Bold </B>  Bold
<PRE> Preformatted Text </PRE>  Preformatted Text
<STRONG> Strong </STRONG>  Strong
<ADDRESS> Address </ADDRESS>  Address
<CITE> Citations </CITE>  Citations
<CODE> Source Code </CODE>  Source Code

Font modifications
Web creators can also change the way text looks by using the <FONT> tag
SIZE="number" - changes size of the font; 1=smallest, 7 = largest
  <FONT SIZE="7">Big</FONT> <FONT SIZE="1">Small</FONT>
  Big Small
COLOR="color-name" - changes text color
  <FONT COLOR="red">This is red</FONT>
  This is red

FACE="font-name" - changes font
  <FONT FACE="verdana">This is the verdana font;</FONT> <FONT FACE="chicago">this is the chicago font.</FONT>
  This is the verdana font; this is chicago font.

  <FONT SIZE="7" FACE="courier" COLOR="red">Big, Courier & Red</FONT>
  Big, Courier & Red
  <FONT SIZE="7"><FONT FACE="courier">Big & Courier</FONT> - Just Big</FONT>
    Big & Courier - Just Big




pr






إرسال تعليق

0 تعليقات