How to Align a Left Script SCR
The "<script>" HTML tag allows Web developers to integrate scripts written in compatible languages into Internet pages. It is possible to specify the horizontal alignment of that tag to enhance the visual impact of a page. You can left-align a script in a Web page by editing the HTML file that contains its source code.
Instructions
-
-
1
Open the HTML file that contains the source code of the Web page in an HTML editing application, or in a text editor.
-
2
Locate the HTML script tag in the document. Script tags usually look like the following:
<script type="..." src="..."></script>
-
-
3
Enter the following tag before the script tag:
<div align="left">
Type the following tag after the script tag:
</div>
-
4
Click "File" and select "Save." Upload the modified HTML file to your Web server, using your host's upload manager or an FTP application.
-
1