I'm making a portfolio website right now with Visual Studio 2013 and ASP.NET 3.5 because my free hosting only supports 3.5. Are there any bad practices in my code at the moment? What would you change and why?
$TextColor: #d9d3d2; $LandingColor: #343434; $BackgroundColor: #1a1a1a; $ImportantTextColor: #de9100; $OriginalSideColors: #eeeeee; html * { //font-size: 1em !important; //color: white !important; font-family: sans-serif !important; } #header { //background-color: #de9100; color: white; text-align: center; padding: 5px; border-radius: 10px; } #TopDiv{ height : 50px; } body{ background-color: #E6E6E6; } #nav { text-align :center; color : white; line-height: 50px; background-color: #424242; height: 400px; width: 5%; float: left; //padding:5px; border-radius: 10px; } #padding1 { height: 400px; width: 10%; background-color: #E6E6E6; float: left; //padding:100px; border-radius: 10px; } #section { text-align :inherit; color : black; height: 400px; width: 45%; float: left; background-color: #E6E6E6; //padding:100px; border-radius: 10px; } #sectiontext { text-align : left; color : black; height: 400px; width: 100%; padding-left : 20px; float: left; //background-color: white; //padding:100px; border-radius: 10px; } #padding2 { height: 400px; width: 5%; background-color: #E6E6E6; float: left; //padding:100px; border-radius: 10px; } #rightsection { color : white; background-color: #E6E6E6; height: 400px; width: 35%; float: left; //padding:100px; border-radius: 10px; } #player{ margin : 0px; } #BotDiv { // Height had to be more than the other divs. Which were 400 height : 450px; } #footer { //background-color: #403B38; color: white; clear: both; text-align: center; padding: 5px; border-radius: 10px; } .HeaderandFooter{ background-color : #030303; } <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server" id="Head"> <link rel="stylesheet" type="text/css" href="Scss1.css" /> <title>3rdDayRaised.com</title> </head> <body id="Body"> <form id="form1" runat="server"> <div id="Container"> <div class="HeaderandFooter" id="header"> <h1>3rd Day Raised</h1> </div> <div id="TopDiv"></div> <div id="nav"> Home<br /> Music<br /> Games<br /> Blog<br /> Contact<br /> </div> <div id="padding1"></div> <div id="section"> <h1>3rd Day Raised</h1> <p> Lorum Ipsum </p> <p> Lorem Ipsum </p> <p> Lorem Ipsum </p> <p> Lorem Ipsum </p> <p> Lorem Ipsum </p> <p> Lorem Ipsum </p> <p> Lorem Ipsum </p> <p> Lorem Ipsum </p> </div> <div id="padding2"></div> <div id="rightsection"> <div id="player"> <iframe width="100%" height="450" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/playlists/1227337&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false"></iframe> </div> </div> <br /> <div id="BotDiv"></div> <br /> <div class="HeaderandFooter" id="footer"> Copyright © 3rdDayRaised.com </div> </div> </form> </body> </html>