forked from Jijnyasa/printhello-coding-prep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (52 loc) · 2.49 KB
/
index.html
File metadata and controls
90 lines (52 loc) · 2.49 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
<!DOCTYPE html>
<html>
<title>PrintHello - Hacktoberfest</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
html,body,h1,h2,h3,h4,h5,h6 {font-family: "Roboto", sans-serif}
</style>
<body class="w3-light-grey">
<div class="w3-content w3-margin-top" style="max-width:1400px;">
<div class="w3-row-padding">
<div class="w3-third">
<div class="w3-white w3-text-grey w3-card-4">
<div class="w3-display-container">
<img src="logo.jpg" style="width:100%" alt="Avatar">
<div class="w3-display-bottomleft w3-container w3-text-black">
<h2>PrintHello</h2>
</div>
</div>
<div class="w3-container">
<p><i class="fa fa fa-globe fa-fw w3-margin-right w3-large w3-text-teal"></i><a href="http://www.printhello.in/" target="__blank">printhello.in</a></p>
<p><i class="fa fa-facebook fa-fw w3-margin-right w3-large w3-text-teal"></i><a href="https://www.facebook.com/PrintHello-292576184720001" target="__blank">fb.com/PrintHello</a></p>
<p><i class="fa fa-envelope fa-fw w3-margin-right w3-large w3-text-teal"></i>printhello@gmail.com</p>
<p><i class="fa fa-phone fa-fw w3-margin-right w3-large w3-text-teal"></i>+91-8708577803</p>
<hr>
<br>
</div>
</div><br>
</div>
<div class="w3-twothird">
<div class="w3-container w3-card w3-white w3-margin-bottom">
<h2 class="w3-text-grey w3-padding-16"><i class="fa fa-suitcase fa-fw w3-margin-right w3-xxlarge w3-text-teal"></i>Hacktoberfest 2019</h2>
<!-- Copy from here -->
<div class="w3-container">
<h5 class="w3-opacity"><b>I am a pH-developers</b></h5>
<h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Tanuj Vishnoi <span class="w3-tag w3-teal w3-round">CSE</span></h6>
<p>My profile is: github.com/vishnoitanuj</p>
<hr>
</div>
<!-- Till here -->
</div>
</div>
</div>
<footer class="w3-container w3-teal w3-center w3-margin-top">
<p>Mainted by: Tanuj Vishnoi</p>
<p>Powered by <a href="http://www.printhello.in/" target="_blank">printhello/a></p>
</footer>
</body>
</html>