-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (112 loc) · 5.11 KB
/
index.html
File metadata and controls
114 lines (112 loc) · 5.11 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="style.css" >
<link rel="stylesheet" media="screen and (max-width:800px)" href="table.css">
<link rel="stylesheet" media="screen and (max-width:530px)" href="phone.css">
<script src="https://kit.fontawesome.com/7c57659096.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Carter+One&family=Otomanopee+One&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#achivements">ACHIVEMENTS</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
</nav>
<section id="home">
<div class="main">
<h1 class="headings" style="text-shadow: 0 0 20px rgb(255,45,45)">I AM <br> SAHIL MAURYA</h1>
<button class="btn">
Let's Go
</button>
</div>
</section>
<section id="about">
<h1 class="headings" style="background-color: rgba(0,0,0,0.4);" >ABOUT</h1>
<div id="pic">
<img src="images/20201226_150957.jpg" alt="">
<div id="intro">
<h2>Hello!</h2>
<p id="skill">Front End Dev | Python Enthusiast</p>
<p>My name is Sahil Maurya . I'm currently studying in class XII at
D.A.V Public School,Bhatgaon . I'm
deeply passionate about Website development & innovations.Also,
I like pushing myself and taking up new challenges. </p>
<h3>My Skills</h3>
<div class="icon">
<ul class="list">
<i class="fab fa-python fa-3x" aria-hidden="true"></i>
<i class="fab fa-css3 fa-3x" aria-hidden="true"></i>
<i class="fab fa-html5 fa-3x" aria-hidden="true"></i>
</ul>
</div>
</div>
</div>
</section>
<section id="achivements">
<h1 class="headings">ACHIVEMENTS</h1>
<div class="gallery">
<img src="images/python.png" alt="">
<img src="images/html.jpg" alt="">
<img src="images/certi.png" alt="">
<img src="images/data.png" alt="">
<img src="images/skil.jpg" alt="">
<img src="images/stock.jpg" alt="">
</div>
</section>
<section id="services">
<h1 class="headings">SERVICES</h1>
<div class="row">
<div class="box">
<img src="icons/web.png" alt="">
<h1 class="headings">Website Design</h1>
<p>I develop websites that build businesses! I believe,
there is no room for a one-size-fits-all approach in web development services.
Each website is unique and it needs a personal touch to meet specific business needs.
I effectively transform your idea into reality.</p>
</div>
<div class="box">
<img src="icons/ux.png" alt="">
<h1 class="headings">UX/UI <br> Design</h1>
<p>No matter how powerful or innovative your
application idea is, without a solid, well-thought user
interface design, it won’t achieve success easily.
In today’s competitive world, only a good user
experience will define the future of the app</p>
</div>
<div class="box">
<img src="icons/digital.png" alt="">
<h1 class="headings">Digital Marketing</h1>
<p>
I offer customized solutions to a global clientele.
My data & results-driven internet marketing strategies help to deliver
the right message to the right people through the right platform and at the right time.
Seamlessly combining keyword research, target audience analysis & quality content creation,
</p>
</div>
</div>
</section>
<section id="contact">
<h1 class="headings">CONTACT</h1>
<form action="" class="form">
<input type="text" name="name" class="input"
placeholder="Enter Your Name">
<input type="text" name="email" class="input"
placeholder="Enter Your Email">
<textarea name="msg" id="msg" cols="30"
rows="10" placeholder="Enter Your Message"></textarea>
<a href="#"><button type="button" id="send">Send</button></a>
</form>
</section>
</body>
</html>