Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ------------------------------------------------------------
- --test.html--
- ------------------------------------------------------------
- <html>
- <head>
- <title>Test Page</title>
- <link rel="stylesheet" type="text/css" href="test.css">
- </head>
- <body>
- <!-- site nav -->
- <ul class = "nav">
- <li><a href="http://www.youtube.com/computoguy">My YouTube</a></li>
- <li><a href="http://www.twitter.com/computoguy">My Twitter</a></li>
- </ul>
- <!-- content -->
- <h1>Test</h1>
- <br>
- <p>So, hello there. How are you doing today?</p>
- </body>
- </html>
- ------------------------------------------------------------
- --test.css--
- ------------------------------------------------------------
- @charset "UTF-8"
- body{
- background-color: #394859;
- padding-left: 300px
- }
- h1{
- font-family: Arial Bold;
- color: #0DFF7A
- }
- p{
- font-family: Arial;
- color: #FFFFFF
- }
- ul.nav{
- list-style-type:none;
- position: absolute;
- top: 10px;
- left: 10px
- }
- ul.nav li{
- background: #222222;
- padding: 0.2em;
- margin: 1em 0;
- border-right: 1em solid #222222
- }
- a{
- font-family: Arial;
- color: #FF781F
- }
Advertisement
Add Comment
Please, Sign In to add comment