-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
87 lines (81 loc) · 4.59 KB
/
portfolio.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="portfolio.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">
<img src="https://w7.pngwing.com/pngs/449/539/png-transparent-career-portfolio-artist-s-portfolio-portfolio-miscellaneous-angle-kitchen-thumbnail.png" class="img-fluid" alt="Brand Logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav ml-auto">
<a class="nav-link active" href="#aboutme">About Me<span class="sr-only">(current)</span></a>
<a class="nav-link" href="#projects">Projects Gallery</a>
<a class="nav-link" href="#contact">Contact Form</a>
</div>
</div>
</nav>
<div class="bg-image1 d-flex flex-column justify-content-center" id="aboutme">
<div class="container">
<div class="row">
<div class="col-12">
<h class="h1style">Hi, I am Aswini Kommineni</h>
<p class="p1style">-Aspiring Full Stack Developer</p>
</div>
</div>
</div>
</div>
<div class="projectsbg d-flex flex-column justify-content-center pt-5 pb-5 " id="projects">
<div class="centeralign">
<h1 class="projectsp">PROJECTS GALLERY</h1>
</div>
<div class="container">
<div class="row">
<div class="col-12 col-md-6 mb-3">
<div class="projectcard d-flex flex-column justify-content-center mt-5">
<h1 class="cardh">TODO LIST</h1>
<div class="centeralign">
<img class="imageh" src="images/TODOLIST.png"/>
</div>
<p class="cardp">Created a todo application using HTML, CSS, and JavaScript.. Implemented CRUD operations with event listeners for dynamic UI updates.</p>
<p class="cardp">Techcologies used : HTML,CSS,JAVASCRIPT.</p>
</div>
</div>
<div class="col-12 col-md-6 mb-3">
<div class="projectcard d-flex flex-column justify-content-center mt-5">
<h1 class="cardh">ECOMMERCE WEBSITE</h1>
<div class="centeralign">
<img class="imageh" src="images/Ecommerce.png"/>
<p class="cardp">Developed a responsive e-commerce website showcasing a variety of products with a user-friendly sections.</p>
<p class="cardp">Technologies used : HTML,CSS </p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bgcontact d-flex flex-column " id="contact">
<div class="centeralign">
<h class="contacth">CONTACT ME</h>
</div>
<div class="container">
<div class="row">
<div class="col-12">
<p>EMAIL : [email protected]</p>
<p>LINKEDIN : https://www.linkedin.com/in/aswini-kommineni</p>
<p>PHONE : 9391981838</p>
<p>| Andhra Pradesh | Visakhapatnam | 530012 |</p>
</div>
</div>
</div>
</div>
</body>
</html>