Hello
Please I want helpfixing responsiveness of the below on across devices
Please I want helpfixing responsiveness of the below on across devices
Code:
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
*{
margin:0px;
padding:0px;
box-sizing: border-box;
}
#image {
float:right;
margin-left:0px;
margin-top:0px;
width:50px;
height:50px;
}
@media (min-width: 1025px) and (max-width: 1280px) {
}
/*
##Device = Tablets, Ipads (portrait)
##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
}
/*
##Device = Tablets, Ipads (landscape)
##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}
/*
##Device = Low Resolution Tablets, Mobiles (Landscape)
##Screen = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
#text{
font-size:1px;
padding:10px;
margin-top:0%;
margin-right:0px;
float:right;
}
#image{
float:right;
margin-top:0px;
margin-right:0px;
margin-left:20px;
width:50px;
height:50px;
}
}
/*
##Device = Most of the Smartphones Mobiles (Portrait)
##Screen = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
#image{
padding:0px;
float:left;
margin-left: 20px;
margin-bottom: 0px;
margin-top:0px;
margin-right:0px;
width:50px;
height:50px;
border-radius:50%
}
#text{
font-size:10px;
padding:20px;
margin-left:20px;
margin-top:0px;
margin-bottom:0px;
margin-right:0px;
float:left;
}
}
</style>
</head>
<body>
<div id = "image" style = "margin:0px 0px 0px 0px;">
<img src="https://ebluebyte.com/wp-content/uploads/2018/08/nicholas.jpg" alt="Nicholas" style ="border-radius:50%">
</div>
<div id = "text">
<a style = "font-family:'Lato', 'Arial', 'sans-serif'; font-size:20px; text-decoration:none; float:right; margin:0px 0px 0px 0px;" href = "https://www.linkedin.com/in/nicholas-zobi-046709b4/"><strong>Zobi</strong> Nicholas</a>
</div>
<div id = "movement">
<marquee>Welcome and thank you for visiting. For suggestions and booking kindly send me an email @ nicholas@ebluebyte.com </marquee>
</div>
</body>
</html>
Comment