-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (84 loc) · 4.15 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
<!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>Developers Repository</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header id="headerContainer">
<h1 id="headerText">The<br>
Developer <br>
Repository
</h1>
<img id="userLogo" src="user.png">
</header>
<main>
<div id="mainHeading">
<h2 id="mainText">Explore developer profiles</h2>
</div>
<hr id="horizontalLine">
<div id="searchOuter">
<div id="searchContainer">
<input id="searchBox" type="search" placeholder="Search for username"></input>
<img id="searchIcon" src="search-24px.svg">
</div>
</div>
<div id="devButtonsContainer" >
<div id="devButtons" >
<button id="sudhirButton"><img src="https://avatars.githubusercontent.com/u/40768697?v=4" id="sudhirprofileImage">J N Sudhir</button>
<button id="MetaButton"><img src="https://avatars.githubusercontent.com/u/69631?v=4" id="metaProfileImage">Meta</button>
</div>
</div>
<hr id="horizontalLine">
<div id="questionContainer">
<h1 id="questionText">Could not find what you are looking for ?</h1>
</div>
<div id="addDevBtnContainer">
<button id="addDevBtn"> Add developer info </button>
</div>
<div id="formContainer">
<h2 id="formHeading">Add developer Profile</h2>
<hr>
<form id="devForm">
<!-- github -->
<label for="github" id="githubLabel"><img id="githubFormImage" src="github.png"> Github*</label><br>
<input type="text" id="githubText" name="github" required><br>
<!-- linkedin -->
<label for="linkedin" id="linkedinLabel"><img id="linkedinFormImage" src="linkedin.png"> Linkedin</label><br>
<input type="text" id="linkedinText" name="linkedin"><br>
<!-- codechef -->
<label for="codechef" id="codechefLabel"><img id="codechefFormImage" src="codechef.png">Codechef</label><br>
<input type="text" id="codechefText" name="codechef"><br>
<!-- hackerrank -->
<label for="hackerrank" id="hackerrankLabel"><img id="hackerrankFormImage" src="hackerRank.png"> Hackerrank</label><br>
<input type="text" id="hackerrankText" name="hackerrank"><br>
<!-- twitter -->
<label for="twitter" id="twitterLabel"><img id="twitterFormImage" src="twitter.png"> Twitter</label><br>
<input type="text" id="twitterText" name="twitter"><br>
<!-- medium -->
<label for="medium" id="mediumLabel"><img id="mediumFormImage" src="medium.png"> Medium</label><br>
<input type="text" id="mediumText" name="medium">
<!-- <hr> -->
<div id="formButtons">
<input type="button" id="cancelForm" value="Cancel">
<input type="submit" id="formSubmitBtn" value="Submit">
</div>
</form>
</div>
<div id="socialMediaContainer">
<h3 id="socialMediaText">Stay Connected : </h3>
<a href="https://github.com/jnsudhir"><img id="githubSocialMedia" src="github2.png"></a>
<a href="https://www.instagram.com/j.n.sudhir"><img id="instagramSocialMedia" src="instagram.png"></a>
<a href="https://wa.me/918790854310" target="_blank"><img id="whatsappSocialMedia" src="whatsapp.png"></a>
</div>
<footer id="footerContainer">
<h2 id="footerText">Made with <img id="heartIcon" src="heartFav.png"></i> by Sudhir</h2>
</footer>
</main>
<script src="myScript.js"></script>
</body>
</html>