-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
102 lines (88 loc) · 2.94 KB
/
index.php
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
<?php
session_start();
$_SESSION['display']="";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Portfolio</title>
<link rel="stylesheet" href="css/home.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<script src="script.js" type="text/javascript"></script>
</head>
<body>
<header>
<a class="logo">Muallem</a>
<nav>
<ul class="active">
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<div class="wrapper">
<section class="hero">
<div class="inner">
<h1>I am a full stack developer.</h1>
</div>
</section>
</div>
<div class="aboutHead" id="about">
<h1>ABOUT</h1>
<section class="about">
<div class="profile">
<div class="img-container">
<img src="images/avi.jpg" width="100%">
</div>
<h2>Avinash Varpeti</h2>
</div>
<div class="disc">
<p>I am a full stack Developer.I have fell in love with programming!I love to create Amazing websites and WebApps.I am a beginner in this domain having 6-months Experience!....</p>
</div>
</section>
</div>
<section class="skills">
<h1>My Skills</h1>
<section class="whyMe">
<div class="card">
<h1>HTML 5</h1>
</div>
<div class="card">
<h1>CSS 3</h1>
</div>
<div class="card">
<h1>JAVASCRIPT</h1>
</div>
<div class="card">
<h1>MYSQL</h1>
</div>
<div class="card">
<h1>PHP</h1>
</div>
</section>
</section>
<section class="contact" id="contact">
<div class="form-container">
<h2>get in touch</h2>
<form method="POST" action="mail.php">
<input type="text" placeholder="your name" name="name">
<input type="email" placeholder="your email" name="email">
<textarea placeholder="ENTER YOUR MESSAGE" name="msg"></textarea>
<button name="sendbtn">Send</button>
<h2 id="display"><?php echo $_SESSION['display']; ?></h2>
</form>
</div>
<div class="icons-container">
<p>Contact No.-7021915752</p>
<p>[email protected]</p>
<p>lets connect on social media</p>
<a href="https://www.instagram.com/mu_allem_/"><i class="fa fa-instagram fa-2x" id="insta"></i></a>
<a href="https://www.facebook.com/avinash.varpeti"><i class="fa fa-facebook fa-2x" id="fb"></i></a>
<a href="https://www.linkedin.com/in/oneside-boss-4300b4172/"><i class="fa fa-linkedin fa-2x" id="linkdn"></i></a>
</div>
</section>
</body>
</html>