-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
100 lines (90 loc) · 4.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Sniper's Links</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.teal-green.min.css">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<nav class="white" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="#" class="brand-logo">Logo</a>
<ul class="right hide-on-med-and-down">
<li><a href="#">Home</a></li>
<li><a href="#">Profile</a></li>
</ul>
<ul id="nav-mobile" class="sidenav">
<li><div class="user-view">
<div class="background">
<img src="images/office.jpg">
</div>
<a href="#user"><img class="circle" src="images/yuna.jpg"></a>
<a href="#name"><span class="white-text name">John Doe</span></a>
<a href="#email"><span class="white-text email">[email protected]</span></a>
</div>
</li>
<li><a href="#">Home</a></li>
<li><a href="#">Profile</a></li>
<li><a class="sidenav-close" href="#!">Close menu</a></li>
</ul>
<a href="#" data-target="nav-mobile" class="sidenav-trigger"><i class="material-icons">menu</i></a>
</div>
</nav>
<div class="mdl-layout mdl-js-layout">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
Header text
</div>
</header>
<main class="container">
<section class="section">
<div class="row">
<p>Hello world!</p>
</div>
<div class="row">
<div class="card-panel teal">
<span class="white-text">I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively. I am similar to what is called a panel in other frameworks.</span>
</div>
</div>
<div class="row">
<div class="collection">
<a class="collection-item avatar" href="www.google.co.uk">
<img src="img/shepherds-hut.avif" alt="" class="circle">
<span class="title">Title</span>
<p>First Line <br>
Second Line
</p>
<!-- <a href="#!" class="secondary-content"><i class="material-icons">grade</i></a> -->
</a>
<a class="collection-item avatar">
<i class="material-icons circle">folder</i>
<span class="title">Title</span>
<p>First Line <br>
Second Line
</p>
<!-- <a href="#!" class="secondary-content"><i class="material-icons">grade</i></a> -->
</a>
</div>
</div>
</section>
</main>
<footer class="footer mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
<div class="mdl-logo">Left footer txt</div>
</div>
<div class="mdl-mini-footer__right-section">
<div class="mdl-logo">Right footer txt</div>
</div>
</footer>
</div>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
</body>
</html>