0% found this document useful (0 votes)
3 views6 pages

Cloud Computing Methodologies

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views6 pages

Cloud Computing Methodologies

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

CLOUD COMPUTING METHODOLOGIES

LAB MOODLE ASSESSMENT


WEB PAGE PROFILE CREATION

VASANTH.K
24MID0116
HTML code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vasanth - Student Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
*{
box-sizing: border-box;
}

body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #eef6fb;
text-align: center;
}

.profile-box {
background-color: #fff;
padding: 30px 20px;
margin: 50px auto;
width: 90%;
max-width: 500px;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
border: 3px solid #007acc;
}

h1 {
font-size: 28px;
color: #222;
margin: 10px 0;
}

h2 {
font-size: 18px;
color: #007acc;
margin: 5px 0;
}

p{
color: #444;
font-size: 15px;
margin: 20px 0;
}

.skills {
margin-top: 25px;
}

.skills h2 {
margin-bottom: 10px;
}

.skills ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
}

.skills li {
background-color: #007acc;
color: #fff;
padding: 8px 14px;
margin: 5px;
border-radius: 20px;
font-size: 14px;
}

.contact {
margin-top: 30px;
}

.contact a {
display: inline-block;
margin: 8px 12px;
text-decoration: none;
color: #007acc;
font-weight: 500;
font-size: 15px;
}

.contact a:hover {
text-decoration: underline;
}
</style>
</head>
<body>

<h1>Vasanth</h1>
<h2>Integrated MTECH - CSE (Data Science)</h2>
<h2>Register No: 24MID0116</h2>

<p>
Hello! I'm a passionate student in Data Science and Programming, pursuing M.Tech
Integrated in CSE.
</p>

<div class="skills">
<h2>Skills</h2>
<ul>
<li>Python</li>
<li>C and C++</li>
<li>Java</li>
<li>Content Creation</li>
</ul>
</div>

<div class="contact">
<a href="mailto:[email protected]">📧 Email</a>

<a href="https://linkedin.com/in/yourprofile" target="_blank">💼 LinkedIn</a>

<a href="https://github.com/yourusername" target="_blank">💻 GitHub</a>

</div>
</div>

</body>
</html>

OUTPUT:

You might also like