How do I incorperate CSS and Javascript into the same page?
thanks,
thanks,
<link rel="stylesheet" type="text/css" href="styles/your_stylesheet.css" /> <script src="your_javascript.js"></script>
<body>
<script type="text/javascript">
document.write("Some Javascript")
</script>
</body>
INLINE CSS:
<div style="background-color: #333;margin-left: 3px">
Hello World
</div>
Comment