-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (78 loc) · 3.03 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
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<title> Avorent | Welcome</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Test demo of a website">
<meta name="keywords" content="web design, test, demo">
<meta name="author" content="Panhavuth Lau">
<link rel="stylesheet" href="https://s3.amazonaws.com/icomoon.io/114779/Socicon/style.css?u8vidh">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="css/bootstrap.css"/>
<link rel="stylesheet" href="css/style.css"/>
<link rel="stylesheet" href="css/showcase.css"/>
<link rel="icon" type="image/png" href="database/main/ico.png"/>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/main.js"></script>
</head>
<!-- This is where all the content of the webpage starts-->
<body data-spy="scroll" data-target=".navbar" data-offset="50" scroll="off">
<!-- Navigation Bar (stickied) -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#collapsingNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a id="logo" class="navbar-brand" href="#intro">Avorent</a>
</div>
<div class="collapse navbar-collapse" id="collapsingNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#intro">Welcome</a></li>
<li><a href="#sc-about">About Me</a></li>
<li><a href="#sc-code">Programming</a></li>
<li><a href="#sc-art">Artworks</a></li>
</ulc>
</div>
</div>
</nav>
<!-- Header (Top of the webpage)-->
<header id="intro" class="jumbotron parallax">
<div class="container-fluid">
<img src="img/art/angel/Mercy_Icon.png"/>
</div>
<div id="intro" class="introtext container showcase text-center">
<h1> Who am I?</h1>
<p>I am an artist. I am a programmer.</p>
<h2>I am Avorent</h2>
</div>
</header>
<!-- Sections-->
<section id="sc-about" class="parallax showcase text-center">
<div class="container-fluid">
<h1>Student</h1>
<p>My actual name is Panha. I'm a 20-year-old university student</p>
</div>
</section>
<section id="sc-code" class="parallax showcase text-right">
<div class="container-fluid">
<h1>Programming</h1>
</div>
</section>
<section id="sc-art" class="parallax showcase">
<div class="container-fluid">
<h1>Art</h1>
</div>
</section>
<!-- This is the bottom of the page -->
<footer>
<p>Avorent, Copyright © 2018</p>
</footer>
</body>
</html>