-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (66 loc) · 1.75 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Familienportal Baton</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/skins/pink.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<!-- Add your site or application content here -->
<!-- Main Container -->
<div class ="main-container">
<!-- Aside -->
<div class="aside">
<!-- Logo -->
<div class="logo">
<a href="#">Baton</a>
</div>
<!-- Nav Toggler Button -->
<div class="nav-toggler">
<span></span>
</div>
<!-- NAV -->
<ul class="nav">
<li><a href="#" class="active"><i class="fa fa-home"></i> Home</a></li>
<li><a href="#"><i class="fa fa-user"></i> Profil</a></li>
<li><a href="#"><i class="fa fa-list"></i> Info</a></li>
<li><a href="#"><i class="fa fa-briefcase"></i> Logout</a></li>
</ul>
<!-- Copyright -->
<div class="copyright-text">
© 2022 | G1-Nordend-Theme v1.0b
</div>
</div>
<!-- Aside End -->
<!-- Main Content -->
<div class="main-content">
<!-- Home Section -->
<section class="home section">
<div class="container">
<div class="intro">
<img src="img/girl1.jpg" alt="profile" class="shadow-dark">
<h1>Sina Stock</h1>
<p>Ich bin ganz toll!</p>
</div>
</div>
</section>
<!-- Home Section End -->
</div>
<!-- Main Content End -->
</div>
<!-- Main Container -->
<!-- Javascript -->
<!-- Javascript End -->
</body>
</html>