Untitled
unknown
plain_text
a year ago
6.6 kB
6
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="style.css"> <!-- Linking the CSS file --> <title>Uzma Tasneem</title> </head> <body> <nav> <ul> <img src="C:\Users\Hp\Downloads\text-1704657317988.png" alt="Your Photo" style="float: left; margin-right: 750px;margin-top: 10px;"> <li><a href="#home">Home</a></li> <li><a href="#about">About</a></li> <li><a href="#projects">Projects</a></li> <li><a href="#certificates">Certificates</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> <div class="header"> <div class="name-container"> <h1>Uzma</h1><h1>Tasneem</h1> <h3>Versatile Frontend Developer and Data Enthusiast</h3> </div> <div class="image-container"> <img src="C:\Users\Hp\Downloads\photo.jpg" alt="Your Photo"> </div> </div> </body> </html> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Contact Me</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; overflow: hidden; /* Prevent scrolling */ } .container { max-width: 600px; margin: 20px auto; padding: 20px; background: linear-gradient(to right, #676363, #858080); /* Linear gradient background */ border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .form-group { margin-bottom: 20px; } label { display: block; margin-bottom: 5px; font-weight: bold; } input[type="email"], textarea { width: 100%; padding: 8px; border-radius: 4px; border: 1px solid #ccc; } textarea { height: 100px; } input[type="submit"] { padding: 10px 20px; background-color: #000000; color: white; border: none; border-radius: 4px; cursor: pointer; } input[type="submit"]:hover { background-color: #2e343b; } </style> </head> <body> <div class="container"> <h2>Contact Me</h2> <form action="#" method="post"> <div class="form-group"> <label for="email">Email:</label> <input type="email" id="email" name="email" required> </div> <div class="form-group"> <label for="message">Message:</label> <textarea id="message" name="message" required></textarea> </div> <input type="submit" value="Send Message"> </form> </div> </body> </html> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>About Me</title> </head> <body style="font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 20px;"> <div style="max-width: 800px; margin: 0 auto; background-color: white; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); padding: 20px;"> <h1 style="text-align: center; color: #333;">About Me</h1> <hr style="border: 1px solid #ccc;"> <div style="display: flex; justify-content: space-between; margin-bottom: 20px;"> <div style="flex: 1; padding: 0 10px;"> </div> <div style="flex: 2; padding: 0 10px;"> <h2 style="color: #333;">Uzma Tasneem</h2> <p style="font-size: 16px; line-height: 1.6;"> I am a versatile frontend developer and data enthusiast passionate about creating engaging and intuitive user interfaces. I love exploring and analyzing data to extract meaningful insights. </p> <p style="font-size: 16px; line-height: 1.6;"> I am proficient in HTML, CSS, JavaScript, and also have experience in SQL for data manipulation and analysis. I enjoy transforming complex data into visually appealing and understandable formats. </p> </div> </div> <p style="font-size: 16px; line-height: 1.6; text-align: center;"> For inquiries or collaborations, feel free to contact me at <a href="mailto:your.email@example.com">your.email@example.com</a>. </p> </div> </body> </html> /* Basic CSS styling for the navigation bar */ body { background-color: #d4d4d4; margin: 0; font-family: Arial, sans-serif; } nav { /* Set the background color of the navigation bar */ overflow: hidden; display: flex; justify-content: flex-end; /* Align the navigation to the right */ } nav ul { list-style-type: none; margin: 0; padding: 0; display: flex; } nav ul li { margin-left: 20px; } nav ul li a { display: block; color:black; text-align: center; padding: 14px 16px; text-decoration: none; } nav ul li a:hover { background-color: #ddd; color: black; } .header { display: flex; justify-content: space-between; align-items: center; padding: 20px; } .name-container { text-align: left; padding: 150px; margin-right: 20px; } .name-container h1 { font-size: 70px; font-weight: bold; margin: 0; } .image-container { width: 30%; /* Set image container to fill half of the page width */ text-align: right; /* Align the image to the right */ } .image-container img { width: 90%; height: 650px; margin-right: 30px; /* Maintain image aspect ratio */ } /* CSS for Animations */ @keyframes nameAnimation { 0% { transform: translateY(-20px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } } /* Rest of your existing CSS */ .name-container h1 { font-size: 70px; font-weight: bold; margin: 0; animation: nameAnimation 1s ease-out forwards; /* Apply animation */ } .name-container h3{ font-size: 28px; animation: nameAnimation 1s ease-in-out; }
Editor is loading...
Leave a Comment