2013-08-02 06:11:07 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Inline text in the top element</title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
2017-08-03 16:47:35 +03:00
|
|
|
<script type="text/javascript" src="../../test.js"></script>
|
2013-08-02 06:11:07 +04:00
|
|
|
<style>
|
|
|
|
span {
|
|
|
|
color:blue;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
background-color: green;
|
|
|
|
}
|
2017-08-08 19:50:31 +03:00
|
|
|
body {
|
2019-05-26 01:54:41 +03:00
|
|
|
font-family: "Helvetica Neue", Arial, sans-serif;
|
2017-08-08 19:50:31 +03:00
|
|
|
}
|
2013-08-02 06:11:07 +04:00
|
|
|
</style>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
Some inline text <span> followed by text in span </span> followed by more inline text.
|
|
|
|
<p>Then a block level element.</p>
|
|
|
|
Then more inline text.
|
|
|
|
</body>
|
|
|
|
</html>
|