hi, i have been working on a log with my friend and we want it to look like the attachment, i currently have a basic css part and html:
#index_blog{
float:left;
}
and html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Welcome to CTech</title>
<link type="text/css"
rel="stylesheet"
src="CTech.css"/>
</head>
<body>
<div id="index_blog">
This is some text
</div>
<div id="twtr-profile-widget"></div>
<script src="http://widgets.twimg.com/j/1/widget.js"></script>
<link href="http://widgets.twimg.com/j/1/widget.css" type="text/css" rel="stylesheet">
<script >
new TWTR.Widget({
profile: true,
id: 'twtr-profile-widget',
loop: true,
width: 250,
height: 300,
theme: {
shell: {
background: '#000000',
color: '#00fcfc'
},
tweets: {
background: '#7f7bfa',
color: '#00fcfc',
links: '#fff200'
}
}
}).render().setProfile('CadetTech').start();
</script>
</body>
</html>
what can i do to have it like the attachment?