ࡱ! 214Z 2 0@P`p2( 0@P`p 0@P`p 0@P`p 0@P`p 0@P`p 0@P`p8XV~OJPJQJ^J@ Normal4$$dA$]^`a$3567>*B*CJOJPJQJ\]^JaJphPP{ Heading 1$dxA$5CJ$\aJ$PP{ Heading 2$dhPA$5CJ\aJZZ{ Heading 3$dPA$5B*CJ\aJphfffZZ{ Heading 4$d(A$6B*CJ]aJphfffZZ{ Heading 5$d(A$5B*CJ\aJphfffZZ{ Heading 6$d(A$6B*CJ]aJphfffDAD Default Paragraph FontRiR  Table Normal4 l4a (k(No ListH>H{Title$dxA$5CJH\aJHhJh{Subtitle$dhPA$'6B*CJ0OJPJQJ]^JaJ0phfffH,,0,"  40T0, !"# 9;<cop2CDvxyPRS,1XXXXXXXXXXXXXXXXXh=h^`567>*B*CJOJPJQJ\]^JaJphhH%h=8^`567>*B*CJOJPJQJ\]^JaJphhH%=pL^p`L567>*B*CJOJPJQJ\]^JaJphhH%h=@  ^@ `567>*B*CJOJPJQJ\]^JaJphhH%h= ^`567>*B*CJOJPJQJ\]^JaJphhH%=Lx^`L567>*B*CJOJPJQJ\]^JaJphhH%h=H^`567>*B*CJOJPJQJ\]^JaJphhH%h=^`567>*B*CJOJPJQJ\]^JaJphhH%=PL^P`L567>*B*CJOJPJQJ\]^JaJphhH% Gz Times New Roman5Symbol3& z Arial7Georgia@"h!r4d2X?>{2Unknown!` 0,AWN1... .H>>    $L 6< < < < < < V*  < <   <   < < < < < <  < w< <  < < < < V Bolded text <b>Text goes here</b> <strong>Text goes here</strong> Italicized text <i>Text goes here</i> <em>Text goes here</em> Underlined text <u>Text goes here</u> Changing font color <font color= red >Text goes here</font> <font color= #0099ff >Text goes here</font> Changing font size <font size= 12px >Text goes here</font> <font size= large >Text goes here</font> Adding links <a href= HYPERLINK "http://www.urlgoeshere.com"httpHYPERLINK "http://www.urlgoeshere.com"://HYPERLINK "http://www.urlgoeshere.com"wwwHYPERLINK "http://www.urlgoeshere.com".HYPERLINK "http://www.urlgoeshere.com"URLgoeshereHYPERLINK "http://www.urlgoeshere.com".HYPERLINK "http://www.urlgoeshere.com"com target= _blank >Link goes here</a> target=_blank indicates that the link will open in a new browser window; you may remove it if you d like the link to open in the same window Adding images <img src= HYPERLINK "http://imageurlgoeshere.com/image.jpg"httpHYPERLINK "http://imageurlgoeshere.com/image.jpg"://HYPERLINK "http://imageurlgoeshere.com/image.jpg"imageURLgoeshereHYPERLINK "http://imageurlgoeshere.com/image.jpg".HYPERLINK "http://imageurlgoeshere.com/image.jpg"comHYPERLINK "http://imageurlgoeshere.com/image.jpg"/HYPERLINK "http://imageurlgoeshere.com/image.jpg"imageHYPERLINK "http://imageurlgoeshere.com/image.jpg".HYPERLINK "http://imageurlgoeshere.com/image.jpg"jpg border= 1px #000 solid align= right /> border= 1px #000 solid will put a black border around your image generated by each visitor s web browser. The first value (1px) refers to the thickness; the second value (#000) refers to the color, which can be replaced with any web-based color name or RGB hex code; the third value (solid) refers to the pattern of the line, which can be replaced with dotted or dashed align= right will manipulate the image to align with the text in a specified way; you may replace right with left, center, or justify Adding a horizontal divider between sections on your webpage <hr /> Adding a line break <br /> Making a nested, bulleted list <ul> <li>Section A</li> <ul> <li>Section A Part 1</li> <li>Section A Part 2</li> <ul> <li>Section A Part 2.1</li> <li>Section A Part 2.2</li> <li>Section A Part 2.3</li> </ul> <li>Section A Part 3</li> <li>Section A Part 4</li> </ul> <li>Section B</li> <li>Section C</li> <ul> <li>Section C Part 1</li> <li>Section C Part 2</li> </ul> <li>Section D</li> </ul> Making a numbered list Replace <ul> with <ol> and </ul> with </ol> in the code above You can also combine numbers and bullets within the same nested list, depending on whether you choose to use <ul> </ul> or <ol> </ol> for each list level Making paragraphs <p>A whole paragraph of text goes here!</p> You may modify the formatting of each paragraph by inserting CSS into your HTML code. For example: <p style= font-size:14px;color:green;font-weight:bold;align=center; >This whole paragraph of text will be centered, green and in 14px.</p> You can add as many or as few of the following CSS modules as you d like to the <p style=  > </p> tag demonstrated above font-size:##px; modifies the size of the text; px can be replaced with pt, em, % or any length unit (cm, in, etc). In lieu of numbers, you can also write font-size:large; and replace large with xx-small, x-small, small, medium (default for most browsers), large, x-large, xx-large, larger, smaller. font-family:Arial; modifies the font type of the text; can be replaced with the name of any font, but if the user s computer does not have the font downloaded, then it will revert to the browser s default. If the font name has spaces in it, e.g., Times New Roman, it should be placed within quotation marks. color:######; or color:red; changes the color of the text. For a list of acceptable web color names, click HYPERLINK "http://en.wikipedia.org/wiki/Web_colors"here. font-weight:bold; determines whether the text is bolded or normal; bold can be replaced with normal. font-style: italic; determines whether the text is italicized or not; italic can be replaced with normal. text-decoration:underline; adds an underline to the text; underline can also be replaced with overline for a line over the text, line-through for a line through the text, and none. text-transform:uppercase; transforms the casing of the text; uppercase (all caps) can be replaced with capitalize (first letter of each word is capitalized), lowercase (all lowercase letters), or none. text-indent:5em; will indent the first line of the paragraph by the specified amount; any unit acceptable for font-size can be used for text-indent. BD  " $ N R x z $ H J     h j r v   " & r t v z . 0 2 6  "$df h>{6] 6]Z>*B*ZphUjh>{U h>{5\Zh>{ 5\ZRVX^b.0:>  hjNPjl\^`"^`hj  BDz|&(24XZ~ h>{5\ h>{6] 5\Z 6]ZZ>*B*ZphUh>{jh>{UR"$.2^`pxz46RThj , Z \ z !!"""%%4%<%P%%%X&Z&b&d&f&h&&0'2'X'((:((() )")d)l)n)p))>*R****+++$+&+,,>*B*ZphUjh>{U h>{6] 6]Z h>{5\ 5\Zh>{ZR,,.,0, h>{6] 5\ZD  $ P R z " }}}}}}}H$ & F d$d%d&d'd(d)fNOPQRA$^`8$ & Fd$d%d&d'd(d)fNOPQRA$" $ J  }}<<@$ & Fd$d%d&d'd(d)fNOPQRA$^`H$ & F d$d%d&d'd(d)fNOPQRA$^`8$ & Fd$d%d&d'd(d)fNOPQRA$ m,,@$ & Fd$d%d&d'd(d)fNOPQRA$^`H$ & F d$d%d&d'd(d)fNOPQRA$^`H$ & F d$d%d&d'd(d)fNOPQRA$^`jP^`mm448$ & Fd$d%d&d'd(d)fNOPQRA$H$ & F d$d%d&d'd(d)fNOPQRA$^`H$ & F d$d%d&d'd(d)fNOPQRA$^` "`j}}}}8$ & Fd$d%d&d'd(d)fNOPQRA$H$ & F d$d%d&d'd(d)fNOPQRA$^` D|(4mmmmmH$ & F ppd$d%d&d'd(d)fNOPQRA$^p`H$ & F d$d%d&d'd(d)fNOPQRA$^` 4Z$0mmmmH$ & F d$d%d&d'd(d)fNOPQRA$^`H$ & F d$d%d&d'd(d)fNOPQRA$^`02`6T}}}}H$ & F d$d%d&d'd(d)fNOPQRA$^`8$ & Fd$d%d&d'd(d)fNOPQRA$Tj\ "%h&2'(p)+0,mH$ & F d$d%d&d'd(d)fNOPQRA$^`H$ & F d$d%d&d'd(d)fNOPQRA$^` ,1h/ =!"#$%   FMicrosoft Office Word Document MSWordDocWord.Document.89qOh+'0   0 8DLXx @@@Aspose.Words for Java 11.8.0.01 Normal.dot@՜.+,0 PX` l  Title   Root Entry F/1TableCompObjqWordDocument .HSummaryInformation(DocumentSummaryInformation8   !"#$%&'()*+,-.03