Skip to content

Commit

Permalink
idk
Browse files Browse the repository at this point in the history
  • Loading branch information
noor-taresh committed Sep 21, 2024
1 parent 185206f commit ca60aff
Show file tree
Hide file tree
Showing 2 changed files with 121 additions and 13 deletions.
116 changes: 106 additions & 10 deletions general.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,110 @@
p {
margin-top: 0;
margin-bottom: 0;
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
/* This style below will be inherited */
font-family: Roboto, Arial;
margin: 0;
padding-top: 80px;
padding-left: 96px;
padding-right: 24px;
background-color: rgb(196, 140, 227);
font-family: 'Arial', sans-serif;
line-height: 1.6;
background-color: #f5f5f5;
color: #333;
padding: 20px;
}

header {
text-align: center;
margin-bottom: 40px;
}

header h1 {
font-size: 3rem;
color: #ff6b6b;
}

header p {
font-size: 1.2rem;
color: #4d4d4d;
}

section {
margin-bottom: 40px;
}

#about {
text-align: center;
}

#about img {
width: 150px;
border-radius: 50%;
margin-top: 10px;
}

h2 {
color: #ff6b6b;
font-size: 2rem;
margin-bottom: 10px;
}

p {
font-size: 1.1rem;
color: #333;
margin-bottom: 20px;
}

#social .social-icons {
display: flex;
justify-content: center;
gap: 20px;
}

#social a {
color: #ff6b6b;
text-decoration: none;
font-weight: bold;
font-size: 1.2rem;
}

#social a:hover {
color: #ff3333;
}

#contact {
text-align: center;
}

#contact-form {
display: inline-block;
text-align: left;
width: 300px;
}

#contact-form input, #contact-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}

button {
width: 100%;
padding: 10px;
background-color: #ff6b6b;
border: none;
color: white;
font-size: 1.1rem;
cursor: pointer;
border-radius: 5px;
}

button:hover {
background-color: #ff3333;
}

footer {
text-align: center;
margin-top: 20px;
color: #666;
}
18 changes: 15 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,26 @@
<body>

<header class="header">
<div class="left-section">
<img class="hamburger-menu" src="noor-icon.jpg" width="180" height="400">
</div>
<div class="right-section">
<h1 style="color:Violet;">Welcome to Noor's World</h1>
</div>
</header>

<section id="about">
<h2>About Me</h2>
<p>I'm a tech enthusiast and designer who loves creative projects. I enjoy reading, journaling, and making cool things happen using one little secret--design!</p>
<img src="noor-icon.jpg" width="180" height="400" alt="A drawing of me">
</section>

<section id="social">
<h2>Connect with me!</h2>
<div class="social-icons">
<a href="https://www.linkedin.com/in/noor-t-67a729232/" target="_blank">LinkedIn</a>
<a href="https://www.github.com/noor-taresh" target="_blank">GitHub</a>
<a href="https://www.instagram.com/pinouraple" target="_blank">Instagram</a>
</div>
</section>


<footer>
<p>© 2024 Noor Taresh. All rights reserved.</p>
Expand Down

0 comments on commit ca60aff

Please sign in to comment.