Add Week-01 and Week-02 content
This commit is contained in:
33
Week-01/Day_03/index.html
Normal file
33
Week-01/Day_03/index.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Day 3 CSS Task</title>
|
||||
|
||||
<!-- Linking the external CSS file -->
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
<h1>My Internship Journey</h1>
|
||||
|
||||
<section class="card">
|
||||
<h2>About Me</h2>
|
||||
<p>I am learning <strong>CSS</strong> today to make my web pages look beautiful and organized.</p>
|
||||
</section>
|
||||
|
||||
<section class="card">
|
||||
<h2>Skills I am Learning</h2>
|
||||
<ul class="skills-list">
|
||||
<li>HTML5 Structure</li>
|
||||
<li class="active">CSS3 Basics</li>
|
||||
<li>JavaScript Logic</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<a href="#" class="btn">Contact Me</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user