-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (123 loc) · 5.58 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
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Personal Website Template Responsive Site" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link href="logo.png" rel="icon">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<header>
<div class="user">
<img src="logo.png" alt="">
<h3 class="name">Muhammed Afsal</h3>
<p class="post">Web Developer</p>
</div>
<nav class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#portfolio">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<div id="menu" class="fas fa-bars"></div>
<section class="home" id="home">
<h3>HI THERE !</h3>
<h1>I'M <span>MUHAMMED AFSAL</span></h1>
<p>Designer and developer devoted to crafting beautiful web experiences focused on simplicity and purpose.</p>
<a href="#about"><button class="btn">About Me<i class="fas fa-user"></i></button></a>
</section>
<section class="about" id="about">
<h1 class="heading"> <span>About</span> Me </h1>
<div class="row">
<div class="info">
<h3> <span> Name : </span> Muhammed Afsal T.P </h3>
<h3> <span> Age : </span> 23 </h3>
<h3> <span> Qualification : </span> CSE </h3>
<h3> <span> Post : </span> MERN Stack Developer </h3>
<h3> <span> Language : </span> Malayalam, English, Tamil, Hindi </h3>
</div>
<div class="counter">
<div class="box">
<span>1+</span>
<h3>Years of experience</h3>
</div>
<div class="box">
<span>10+</span>
<h3>Project completed</h3>
</div>
</div>
</div>
</section>
<section class="education" id="education">
<h1 class="heading"> My <span>Education</span> </h1>
<div class="box-container">
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span>2017</span>
<h3>SSLC</h3>
<p>Years of school education with graduation of secondary education and successfully completed my sslc
exam with more than 90% of marks and completed basic computer skills</p>
</div>
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span>2019</span>
<h3>HSE IN CS</h3>
<p>Two years of higher secondary education in computer engineering i studies basic c , c++ , array and
some basic knowledge about scripting languages</p>
</div>
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span>2022</span>
<h3>CSE</h3>
<p>Three years of diploma in computer science engineering i completed two project using java,MySQL and
PHP,JavaScript also studied android studio</p>
</div>
</div>
</section>
<section class="portfolio" id="portfolio">
<h1 class="heading"> My <span>Projects</span> </h1>
<div class="box-container">
<div class="box">
<a href="https://mhdafs.github.io/samsung-clone" target="_blank"><img src="samsung.webp" alt=""></a>
</div>
<div class="box">
<a href="https://mhdafs.github.io/nasa-clone" target="_blank"><img src="nasa.png" alt=""></a>
</div>
<div class="box">
<a href="https://mhdafs.github.io/starbucks-clone" target="_blank"><img src="starbucks.webp" alt=""></a>
</div>
</div>
</section>
<section class="contact" id="contact">
<h1 class="heading"> <span>Contact</span> Me </h1>
<div class="row">
<div class="content">
<h3 class="title">contact info</h3>
<div class="info">
<h3> <i class="fas fa-envelope"></i> afsalafs8008@gmail.com </h3>
<h3> <i class="fas fa-phone"></i> +91-6235448008 </h3>
<h3> <i class="fas fa-map-marker-alt"></i> Calicut, Kerala, India - 673602 </h3>
</div>
</div>
<form id="gform" method="post"
action="https://script.google.com/macros/s/AKfycbxdMmTkZ4mHtpSARO-8mp4Nq9C4dwj6EHLJTK9OjPrzSGX65IQw52XVXs14gKtz_dHQ/exec">
<input type="text" placeholder="name" name="name" class="box">
<input type="email" placeholder="email" name="email" class="box">
<input type="text" placeholder="project" name="project" class="box">
<input name="message" id="" cols="30" rows="10" class="box message" placeholder="message"></input>
<button type="submit" class="btn"> Send <i class="fas fa-paper-plane"></i> </button>
</form>
</div>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>