Created
October 3, 2020 18:16
-
-
Save rutikwankhade/401b60a50edb004e51315af94cc9eb20 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<link rel="stylesheet" href="style.css"> | |
<link rel="stylesheet" | |
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | |
</head> | |
<body> | |
<nav> | |
<ul> | |
<li><a href="index.html">Home</a></li> | |
<li><a href="#about-me">About</a></li> | |
<li><a href="https://blog.rutikwankhade.dev/">Blog</a></li> | |
</ul> | |
</nav> | |
<div class="main-container"> | |
<div class="card"> | |
<img src="photo (2).jpg" class="profile"> | |
<h2>Rutik Wankhade</h2> | |
<p>Hi ! I am Rutik I am a frontend developer passionate about web technologies.</p> | |
<i class="fa fa-linkedin fa-2x" aria-hidden="true"></i> | |
<i class="fa fa-github fa-2x" aria-hidden="true"></i> | |
<i class="fa fa-twitter fa-2x" aria-hidden="true"></i> | |
</div> | |
<div class="card" id="about-me"> | |
<h3>About me</h3> | |
<p>I love coding. This is my first attempt to create a website using html and css. <br>Besides coding I love reading books, making origami art</p> | |
<h4>Skills</h4> | |
<div class="skills"> | |
<div class="skill">JavaScript</div> | |
<div class="skill">HTML</div> | |
<div class="skill">CSS</div> | |
<div class="skill">React</div> | |
<div class="skill">Git</div> | |
<div class="skill">Github</div> | |
<div class="skill">C++</div> | |
</div> | |
<i class="fa fa-javascript " aria-hidden="true"></i> | |
</div> | |
<div class="card"> | |
<h3>Projects</h3> | |
<div class="projects"> | |
<div class="project"><span class="title">notes app</span> | |
<p>Hi this is a description of this project</p> | |
<button>View Project</button> | |
</div> | |
<div class="project"><span class="title">notes app</span> | |
<p>Hi this is a description of this project</p> | |
<button>View Project</button> | |
</div> | |
<div class="project"><span class="title">notes app</span> | |
<p>Hi this is a description of this project</p> | |
<button>View Project</button> | |
</div> | |
</div> | |
</div> | |
<div class="contact-form card" id="form-link"> | |
<h3>Newsletter</h3> | |
<input placeholder="your Name"> | |
<input placeholder="email"> | |
<Button>Sign up</Button> | |
</div> | |
</div> | |
<footer> | |
made by Rutik wankhade | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment