added style in head of html and setted global font
This commit is contained in:
parent
bac9398f08
commit
a193a1652d
@ -3,10 +3,11 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<title>My sweet MVC</title>
|
<title>My sweet MVC</title>
|
||||||
|
<link rel="stylesheet" href="/static/style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<?php View::show('common/header'); ?>
|
<?php View::show('common/header'); ?>
|
||||||
<?php echo $A_view['body'] ?>
|
<?php echo $A_view['body'] ?>
|
||||||
<?php View::show('common/footer'); ?>
|
<?php View::show('common/footer'); ?>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
5
static/style.css
Normal file
5
static/style.css
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400&display=swap');
|
||||||
|
|
||||||
|
* {
|
||||||
|
font-family: 'Nunito', 'Arial';
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user