You can use profile cards to identify and segment contacts, and implement personalization rules. A profile card is a card that contains saved profile keys and profile values. They allow you to assign profile values consistently across all items on your website.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
body{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
background-color: #ddd;
align-items: center;
justify-content: center;
}
*{
box-sizing: border-box;
}
.container{
display: flex;
width: 100%;
height: 100%;
padding: 20px 20px;
}
.box{
flex: 30%;
display: table;
align-items: center;
text-align: center;
font-size: 20px;
background-color: #0d1425;
color: #fff;
padding: 30px 30px;
border-radius: 20px;
}
.box img{
border-radius: 50%;
border: 2px solid #fff;
height: 250px;
width: 250px;
}
.box ul{
margin-top: 30px;
font-size: 30px;
text-align: center;
}
.box ul li{
list-style: none;
margin-top: 50px;
font-weight: 100;
}
.box ul li i{
cursor: pointer;
margin: 10px;
font-size: 40px;
}
.box ul li i:hover{
opacity: 0.6;
}
.About{
margin-left: 20px;
flex: 50%;
display: table;
padding: 30px 30px;
font-size: 20px;
background-color: #fff;
border-radius: 20px;
}
.About h1{
text-transform: uppercase;
letter-spacing: 3px;
font-size: 50px;
font-weight: 500;
}
.About ul li{
list-style: none;
}
.About ul{
margin-top: 20px;
}
@media screen and (max-width: 1068px) {
.container{
display: table;
}
.box{
width: 100%;
}
.About{
width: 100%;
margin: 0;
margin-top: 20px;
}
.About h1{
text-align: center;
}
}
</style>
<body>
<div class="container">
<div class="box">
<img src="assets/rdj.jpeg" alt="">
<ul>
<li>Robert Downey Jr.</li>
<li>50 years</li>
<li>Actor</li>
<li><i style="font-size:24px" class="fa"></i>
<i style="font-size:24px" class="fa"></i>
<i style="font-size:24px" class="fa"></i></li>
</ul>
</div>
<div class="About">
<ul>
<h1>about</h1>
</ul>
<ul>
<h3>Work</h3>
<li>Actor</li>
</ul>
<ul>
<h3>Gender</h3>
<li>male</li>
</ul>
<ul>
<h3>Country</h3>
<li>USA</li>
</ul>
<ul>
<h3>More Info</h3>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its
layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using
'Content here, content here', making it look like readable English. Many desktop publishing packages and web page
editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites
still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose
(injected humour and the like).</p>
</ul>
<ul>
<h3>Contact</h3>
<li>[email protected]</li>
</ul>
</div>
</div>
</body>
</html>