-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (39 loc) · 1.43 KB
/
index.html
File metadata and controls
46 lines (39 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<title>Hello!</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Covered+By+Your+Grace" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<script type="text/javascript">
/* setInterval(function(){
var r = Math.floor(Math.random() * 255) + 1 ;
var g = Math.floor(Math.random() * 255) + 1 ;
var b = Math.floor(Math.random() * 255) + 1 ;
document.body.style.backgroundColor = "rgb( " + r + "," + g + "," + b + ")";
}, 10)*/
</script>
<body>
<header>
<p>Hello</p>
<p>My name is Alex</p>
</header>
<main>
<img src="me.png">
<h1>Mansour</h1>
<p>
I am a second year engineering student, studying at Victoria University of Wellington. My specilisation is in software engineering.
</ br>
<p> I have experience with Java, C, Python, HTML, CSS and a little bit of C# and JSON.
</p>
<ul class="social">
<li><a rel="github" href="https://github.com/aduuub">My code</a></li>
<li><a rel="home" href="http://example.com">My website</a></li>
<li><a rel="twitter" href="http://twitter.com/adamw241">@adamw241</a></li>
</ul>
</main>
<footer>
</footer>
</body>
</html>