-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (116 loc) · 5.27 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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sharon George</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" />
<link rel="stylesheet" href="./style.css" />
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js"></script>
<script src="https://rawcdn.githack.com/albburtsev/jquery.typist/f4f429fad5bab374b1cf01da52ce4e469758afe6/dist/jquery.typist.min.js"></script>
<script src="./script.js"></script>
</head>
<body>
<nav class="navbar fixed-top navbar-dark bg-dark">
<a class="navbar-brand" href="">Sharon George</a>
</nav>
<section id="intro">
<img src="https://images.pexels.com/photos/5533936/pexels-photo-5533936.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260" alt="Sharon George" />
<div class="content">
<h3>Hello, I am</h3>
<h1>Sharon George</h1>
<h2>I am a <span></span></h2>
<div class="socials">
<a target="_blank" href="https://www.instagram.com/_sharon_george_/?hl=en"><i class="fa fa-instagram"></i></a>
<a target="_blank" href="https://github.com/sgsharon02"><i class="fa fa-github"></i></a>
<a target="_blank" href="https://mail.google.com/mail/u/0/#inbox"><i class="fa fa-envelope" aria-hidden="true"></i></a>
</div>
</div>
<div class="go-down">
<a href="#about" class="mouse"></a>
</div>
</section>
<section id="about">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<h2 style="color:darkcyan;">About Me
<i class="fa fa-info-circle" aria-hidden="true"></i>
</h2>
<p>I am a student at VIT Chennai.</p>
<p>Currently studying B.tech Computer Science.</p>
<p>I am a Web developer and a Code Enthusiast</p>
</div>
</div>
</div>
</section>
<section id="experience">
<div class="container-fluid">
<div class="row">
<div class="col-12 col-md-6">
<h2 style="color:darkcyan;"> Experience I Have
<i class="fa fa-briefcase" aria-hidden="true"></i>
</h2>
<p>I have been coding since std 8</p>
<p>I can effiiciently code in JAVA , C++, C, Python</p>
</div>
<div class="col-12 col-md-6">
<h2 style="color:darkcyan;">Projects I Have Done</h2>
<p><i style="color:darkcyan;" class="fa fa-spinner" aria-hidden="true"></i> Will be updated soon.</p>
</div>
</div>
<div class="row">
<div class="col-12 col-md-5">
<h2 style="color:darkcyan;">Contact Me</h2>
<p class="text-center p-3">
<i style="color:darkcyan;"class="fa fa-3x fa-clock-o mr-3"></i>
<i style="color:darkcyan;"class="fa fa-3x fa-comments-o"></i>
</p>
<p>Feel free to talk to me about anything that bothers you. If you need a helping hand, please don't hesitate to contact me. Got a question on the services that I provide? I am just a click away.</p>
</div>
<div class="col-12 col-md-7">
<h2 style="color:darkcyan;" class="mb-3">Say Hi to Me
<i class="fa fa-hand-paper-o"></i>
</h2>
<p style="color:darkcyan;">Show some love💓</p>
<form>
<div class="row">
<div class="col-6">
<div class="form-group">
<input type="text" name="Name" placeholder="What's your name?" class="form-control" required />
</div>
</div>
<div class="col-6">
<div class="form-group">
<input type="email" name="Email" placeholder="Give me your email..." class="form-control" required />
</div>
</div>
</div>
<div class="row">
<div class="col-9">
<div class="form-group">
<input type="text" name="Subject" placeholder="What's it about?" class="form-control" required />
</div>
</div>
<div class="col-3">
<div class="form-group">
<input type="datetime-local" name="Appointment" placeholder="When?" class="form-control" />
</div>
</div>
<div class="col-12">
<div class="form-group">
<textarea name="Message" placeholder="Tell me about it in detail..." class="form-control" required></textarea>
</div>
<button type="submit" class="btn btn-success">Send</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
</body>
</html>