-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (100 loc) · 4.68 KB
/
index.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ayachi Sharma | Home </title>
<link rel="stylesheet"
href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<div class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="#intro" class="nav__link"><i class="fa-solid fa-house"></i></a> </li>
<li class=""><a href="#about" class="nav__link"><i class="fa-solid fa-user"></i></a> </li>
<li class="nav__item"><a href="#work" class="nav__link"><i class="fa-solid fa-briefcase"></i></a> </li>
</ul>
</div>
</header>
<!-- Introduction -->
<section class="intro" id="#home">
<h1 class="section__title section__title--intro">
Hi, I am <strong>Ayachi Sharma</strong>
</h1>
<p class="section__subtitle section__subtitle--intro">designer // front-end developer</p>
<img src="img/ayachi-01.jpg" alt="a picture of ayachi sharma smiling" class="intro__img">
</section>
<!-- About me -->
<section class="about-me" id="about">
<h2 class="section__title section__title--about">My Story</h2>
<p class="section__subtitle section__subtitle--about"></p>
<div class="about-me__body">
<p>
From hating on computers to discovering my interest in solving problems
through programming, I've written my story. A Developer in making and I want
to build tech to create change.
</p>
<p>Currently pursuing my bachelor's in Computer Science.</p>
</div>
<img src="img/ayachi-02.jpeg" alt="" class="about-me__img">
</section>
<section class="about-me" id="about">
<h2 class="section__title section__title--about">My Hobbies</h2>
<p class="section__subtitle section__subtitle--about"></p>
<div class="about-me__body">
<p>Apart from trying to learn new skills, I also like to</p>
<ul>
<li>Write</a> </li>
<li>Sing</a> </li>
<li>Overthink</a> </li>
</ul>
</div>
<img src="" alt="" class="about-me__img shadow">
</section>
<section class="about-me" id="about">
<h2 class="section__title section__title--about">My Work</h2>
<p class="section__subtitle section__subtitle--about"></p>
<div class="about-me__body">
<p class="section__subtitle--body">
coming up.
</p>
</div>
<img src="" alt="" class="about-me__img shadow">
</section>
<div class="contact-form">
<h4 class="center">Get In Touch</h4>
<div class="align-center">
<form action="action_page.php">
<div class="nameform">
<label for="name">Your Name</label>
<input type="text" id="fname" name="Your Name">
</div>
<div class="emailform">
<label for="email">Your Email</label>
<input type="text" id="email-id" name="_replyto">
<input type="submit" value="Submit">
</div>
</form>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<a href="mailto:[email protected]" class="footer__link">[email protected]</a>
<ul class="social-list">
<li class="social-list__item">
<a class="social-list__link" href="https://twitter.com/chatty__writer">
<i class="fa-brands fa-twitter"></i>
</a></li>
<li class="social-list__item">
<a class="social-list__link" href="https://github.com/ayachish">
<i class="fa-brands fa-github"></i>
</a></li>
<li class="social-list__item">
<a class="social-list__link" href="https://www.linkedin.com/in/ayachi-sharma-1524a5244/">
<i class="fa-brands fa-linkedin-in"></i>
</a></li>
</ul>
</footer>
</body>
</html>