-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.html
118 lines (114 loc) · 4.43 KB
/
about.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
<!DOCTYPE html>
<html>
<!-- Head -->
<head>
<!-- Meta Tags -->
<meta name="author" content="roh-7">
<meta name="theme-color" content="#e81d27">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="classification" content="technology, engineering, app development, science">
<!-- Title -->
<title>About roh-7 </title>
<!-- Logo -->
<link rel="shortcut icon" type="image/x-icon" href="static/assets/logos/projects-logo.jpg" />
<!-- CSS files -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="static/css/materialize.css" type="text/css" rel="stylesheet"/>
<link href="static/css/materialize.min.css" type="text/css" rel="stylesheet"/>
<link href="static/css/style.css" type="text/css" rel="stylesheet"/>
<link href="static/css/animate.css" type="text/css" rel="stylesheet"/>
<!-- Font-Awesome -->
<link href="static/css/font-awesome.css" type="text/css" rel="stylesheet"/>
<link href="static/css/font-awesome-min.css" type="text/css" rel="stylesheet"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-176266141-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-176266141-2');
</script>
</head>
<!-- Head ends -->
<!-- Body -->
<body>
<!-- Header -->
<nav class="red rohit" role="navigation">
<div class="nav-wrapper container"><a id="logo-container" href="index.html" class="brand-logo">roh-7</a>
<ul class="right hide-on-med-and-down">
<li> <a href = "index.html">Home </a></li>
<li> <a href = "about.html">About </a></li>
<li> <a href = "projects.html">Projects </a></li>
<li><a href="https://github.com/roh-7">Github</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li> <a href = "index.html">Home </a></li>
<li> <a href = "about.html">About </a></li>
<li> <a href = "projects.html">Projects </a></li>
<li><a href="https://github.com/roh-7">Github</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>
<!-- Header ends -->
<div class="row" style="background-image: url('static/assets/backgrond.jpg');background-repeat: no-repeat;background-size: cover;">
<div class="col s10 offset-s1 m4 l4 offset-m6 offset-l6">
<div class="card white" style="margin-top: 25%; margin-bottom: 25%;">
<div class="card-content nerdyBlack-text">
<span class="card-title"><i class="fa fa-info-circle"></i> About</span>
<h4>I am <span class="element"></span></h4>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="black rohit">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Rohit Ramaswamy</h5>
<p class="grey-text text-lighten-4">I am currently doing my Engineering. Eager to learn.<br> Android Studio | Xcode | Sublime Text<br> C | JAVA | SWIFT | HTML | CSS</p>
</div>
<div class="col l3 s12">
<h5 class="white-text">Connect</h5>
<ul>
<li><a class="white-text" href="https://github.com/roh-7">Github</a></li>
<li><a class="white-text" href="http://www.codechef.com/users/roh_7">Codechef </a></li>
<li><a class="white-text" href="https://facebook.com/rohit.ramaswamy.5">Facebook</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
<a class="white-text">Made by Rohit Ramaswamy using Materalize CSS</a>
</div>
</div>
</footer>
<!-- footer ends -->
<!-- Scripts -->
<script src="static/js/materialize.js"> </script>
<script src="static/js/jquery.min.js"> </script>
<script src="static/js/typed.js"> </script>
<script src="static/js/init.js"> </script>
<script src="static/js/materialize.min.js"> </script>
<!-- Nav bar script -->
<script>
$( document ).ready(function(){
$(".button-collapse").sideNav();
});
</script>
<!-- Typing script -->
<script>
document.addEventListener("DOMContentLoaded", function(){
Typed.new(".element", {
strings: ["an App developer.","fond of music.","a Competitive programmer.","excited to explore all arenas."],
typeSpeed: 30
});
});
</script>
</body>
<!-- body ends -->
</html>