Search This Blog

Thursday, May 26, 2011

I'm still study .................tutorial.

Thursday, May 19, 2011

I already finish my memorize HTML basic



<!DOCTYPE html>
<html lang="eg">
<head>
<meta charsct="utf-8">
<title>..........</title>
</head>
<body>
</body>
</html>




and I have to finish my new web site design 

Wednesday, May 18, 2011

my minimal page

My minimal page validation link  green Ber. 

Thursday, May 5, 2011

This is new web site and I'm steal working thin site but it is not complete
I'm doing study from the book and I will be finish my new web site link tonight .

Wednesday, May 4, 2011

 color property:This example changes the color of the text in the first paragraph of the active document to green.

ActiveDocument.Paragraphs(1).Range.Font.Color = wdColorGreen
  
This example changes the color of the selected text to dark red.
Selection.Font.Color = wdColorDarkRed
  
This example adds a dotted indigo border around each cell in the first table.
If ActiveDocument.Tables.Count >= 1 Then
    For Each aBorder In ActiveDocument.Tables(1).Borders
        aBorder.Color = wdColorIndigo
        aBorder.LineStyle = wdLineStyleDashDot
        aBorder.LineWidth = wdLineWidth075pt
    Next aBorder
End If