diff --git a/Web Development/Task/PORTFOLIO/assets/Ataul1.jpg.jpg b/Web Development/Task/PORTFOLIO/assets/Ataul1.jpg.jpg new file mode 100644 index 00000000..c894d45a Binary files /dev/null and b/Web Development/Task/PORTFOLIO/assets/Ataul1.jpg.jpg differ diff --git a/Web Development/Task/PORTFOLIO/assets/Ataul2.jpg.jpg b/Web Development/Task/PORTFOLIO/assets/Ataul2.jpg.jpg new file mode 100644 index 00000000..295eb70e Binary files /dev/null and b/Web Development/Task/PORTFOLIO/assets/Ataul2.jpg.jpg differ diff --git a/Web Development/Task/PORTFOLIO/assets/profile_pic.jpg b/Web Development/Task/PORTFOLIO/assets/profile_pic.jpg new file mode 100644 index 00000000..452300f8 Binary files /dev/null and b/Web Development/Task/PORTFOLIO/assets/profile_pic.jpg differ diff --git a/Web Development/Task/PORTFOLIO/index.html b/Web Development/Task/PORTFOLIO/index.html new file mode 100644 index 00000000..a1475d86 --- /dev/null +++ b/Web Development/Task/PORTFOLIO/index.html @@ -0,0 +1,71 @@ + + + + + + + + Responsive Resume website html css + + + + +
+
+
+ profile picture +
+

Ataul Wahab

+

App Developer

+
+ +
+
+

Personal Information

+

Name: Ataul Wahab

+

Age: 18

+

Email:wahab.ataul2005@gmail.com

+

Phone:7978446238

+

linkedin:https://www.linkedin.com/in/ataul-wahab-29b568288

+

GitHub:https://github.com/Ataulwahab

+

Skills

+
    +
  • JAVA
  • +
  • Kotlin
  • +
  • Data Structures and Algorithms in Java
  • +
  • C programming language
  • +
+

Education

+

Persuing B.Tech in Information Technology

+

Veer Surendra Sai University Of techninology, 2023-2027


+

Completed Intermediate

+

Cohen International School, 2021-2023

+
+ +
+

About Myself

+

And My Intrests

+ +
    +
  • I am Ataul Wahab. + I am currently pursuing my Bachelor in Technology degree from Veer Surendra Sai University of Technology in Information Technology. My Tech Interest developed when I started learning Java in 2020. My Java Knowledge has guided me to opt for + App development as an domain.
  • + +

+

Experience

+

Position:Code editor and Content Head

+

Task: GDSC solution challenge 2023

+
    +
  • Maintained a lawyer freelance website named "LegalSphere" using HTML, CSS, and JavaScript
  • +
  • Created content for each page of the website
  • +
  • Made a Railway ticket code using Java in 2021
  • +
+
+
+
+
+ + + + + diff --git a/Web Development/Task/PORTFOLIO/style.css b/Web Development/Task/PORTFOLIO/style.css new file mode 100644 index 00000000..8e208f07 --- /dev/null +++ b/Web Development/Task/PORTFOLIO/style.css @@ -0,0 +1,99 @@ +* { + box-sizing: border-box; + margin: 0; + padding: 0; + font-family: 'Montserrat', sans-serif; +} +body { + background: #00b6c4; +} +.container { + background: #f5f5f5; + max-width: 800px; + margin: 60px auto; + height: 1250px; + padding: 20px; + box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); +} +.header { + text-align: center; +} +.header h1 { + margin-bottom: 10px; +} +.header h3 { + text-transform: uppercase; + font-size: 15px; + font-weight: 500; +} +.img-area { + width: 200px; + height: 200px; + border-radius: 50%; + overflow: hidden; + margin: 25px auto; + border: 15px groove deepskyblue; +} +.img-area img { + width: 100%; +} +.main { + display: flex; + flex-wrap: wrap; +} +.left { + flex: 1; + padding: 30px; +} +.left p { + line-height: 2; +} +.left ul li { + line-height: 2; +} +h2 { + background: #00b6c4; + padding: 15px; + color: #fff; + margin: 30px 0; + font-size: 20px; + border-radius: 0 50px 50px 0; +} +.right { + flex: 1; + padding: 30px; +} +.right h3 { + margin-bottom: 15px; +} +.right p { + line-height: 2.9; +} +.right ul li { + line-height: 2; +} +@media only screen and (min-width: 768px) and (max-width: 991px) { + .container { + width: 95%; + height: auto; + } + h2 { + font-size: 18px; + } +} +@media screen and (max-width: 600px) { + .main { + flex-direction: column; + } + .left, .right { + flex: none; + width: 100%; + } + .container { + width: 95%; + height: auto; + } + h2 { + font-size: 15px; + } +} \ No newline at end of file