forked from Open-Source-Community/oscwebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Homepage.html
42 lines (27 loc) · 1.17 KB
/
Homepage.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<body>
<div id="container">
<div id="header" style="background-color:#B8E6B8;">
<h1 style="margin-bottom:0; text-align:center;">OSC Website Homepage</h1></div>
<div id="menu" style="background-color:#CCFFCC; width:100px; float:left; text-align:center;">
<b>Home</b>
<br><a href=HTML.html>HTML</a>
<br>CSS
<br>JavaScript
</div>
<div id="content" style="background-color:#EEEEEE; text-align:center;">
<p>
HTML Layout - Useful Tips
Tip: The biggest advantage of using CSS is that, if you place the CSS code in an external style sheet, your site becomes MUCH EASIER to maintain. You can change the layout of all your pages by editing one file. To learn more about CSS, study our CSS tutorial.
Tip: Because advanced layouts take time to create, a quicker option is to use a template. Search Google for free website templates (these are pre-built website layouts you can use and customize).
HTML Layout Tags
Tag Description
Content goes here
</p>
</div>
<div id="footer" style="background-color:#B8E6B8;clear:both;text-align:center;">
Copyright © W3Schools.com</div>
</div>
</body>
</html>